diff --git a/src/RazorSdk/update-test-baselines.ps1 b/src/RazorSdk/update-test-baselines.ps1
index 38c7e9553632..800bed8e8f4c 100644
--- a/src/RazorSdk/update-test-baselines.ps1
+++ b/src/RazorSdk/update-test-baselines.ps1
@@ -1,6 +1,11 @@
+param([switch] $Validate)
$RepoRoot= Resolve-Path "$PSScriptRoot/../.."
$TestProjects = "Microsoft.NET.Sdk.Razor.Tests", "Microsoft.NET.Sdk.BlazorWebAssembly.Tests" |
ForEach-Object { Join-Path -Path "$RepoRoot/src/Tests/" -ChildPath $_ };
-$TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ -e ASPNETCORE_TEST_BASELINES=true --filter AspNetCore=BaselineTest }
+if($Validate){
+ $TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ --filter AspNetCore=BaselineTest }
+}else {
+ $TestProjects | ForEach-Object { dotnet test --no-build -l "console;verbosity=normal" $_ -e ASPNETCORE_TEST_BASELINES=true --filter AspNetCore=BaselineTest }
+}
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs
index ea9cc7c00d69..870bbca1e645 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmBaselineTests.cs
@@ -17,37 +17,6 @@ public class BlazorWasmBaselineTests : AspNetSdkBaselineTest
{
public BlazorWasmBaselineTests(ITestOutputHelper log, bool generateBaselines) : base(log, generateBaselines)
{
- PathTemplatizer = TemplatizeCompressedAssets;
- }
-
- private string TemplatizeCompressedAssets(StaticWebAsset asset, string originalValue, StaticWebAsset relatedAsset)
- {
- if (!asset.IsAlternativeAsset() && Path.GetExtension(asset.Identity) != ".gz")
- {
- return null;
- }
-
- if (asset.RelatedAsset == originalValue)
- {
- return null;
- }
-
- if (originalValue.Replace("[[CustomPackageVersion]]", "__CustomVersion__").Replace("[[hash]]", "__Hash__").Contains("[["))
- {
- return null;
- }
-
- var result = asset.Identity.Contains("[[") ? asset.Identity : Path.Combine(Path.GetDirectoryName(asset.Identity), "[[" + asset.RelativePath + "]]");
-
- if (GenerateBaselines)
- {
- result = Regex.Replace(result, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- return result.Replace(RuntimeVersion, "${RuntimeVersion}").Replace(DefaultPackageVersion, "${PackageVersion}");
- }
- else
- {
- return result.Replace("${RuntimeVersion}", RuntimeVersion).Replace("${PackageVersion}", DefaultPackageVersion);
- }
}
protected override string EmbeddedResourcePrefix => string.Join('.', "Microsoft.NET.Sdk.BlazorWebAssembly.Tests", "StaticWebAssetsBaselines");
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs
index b66bd47294e8..d8e0528629e8 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/BlazorWasmStaticWebAssetsIntegrationTest.cs
@@ -2,11 +2,8 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
-using System;
-using System.Collections.Generic;
using System.IO;
using System.Linq;
-using System.Text.RegularExpressions;
using System.Xml.Linq;
using Microsoft.AspNetCore.Razor.Tasks;
using Microsoft.NET.TestFramework.Assertions;
@@ -18,12 +15,8 @@ namespace Microsoft.NET.Sdk.BlazorWebAssembly.Tests
{
public class BlazorWasmStaticWebAssetsIntegrationTest : BlazorWasmBaselineTests
{
- private static readonly string DotNet5JSRegexPattern = "dotnet\\.5\\.[0-9]+\\.[0-9]+\\.js";
- private readonly string DotNet5JSTemplate;
-
public BlazorWasmStaticWebAssetsIntegrationTest(ITestOutputHelper log) : base(log, GenerateBaselines)
{
- DotNet5JSTemplate = $"dotnet.{RuntimeVersion}.js";
}
[Fact]
@@ -55,7 +48,7 @@ public void StaticWebAssets_BuildMinimal_Works()
new FileInfo(finalPath).Should().Exist();
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -85,7 +78,7 @@ public void StaticWebAssets_PublishMinimal_Works()
AssertManifest(manifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
publishPath,
intermediateOutputPath);
}
@@ -116,7 +109,7 @@ public void StaticWebAssets_Build_Hosted_Works()
new FileInfo(finalPath).Should().Exist();
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -147,7 +140,7 @@ public void StaticWebAssets_Publish_Hosted_Works()
AssertManifest(manifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
publishPath,
intermediateOutputPath);
}
@@ -178,12 +171,12 @@ public void StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets
AssertManifest(manifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
publishPath,
intermediateOutputPath);
}
- [Fact(Skip="https://github.com/dotnet/sdk/issues/28429")]
+ [Fact(Skip = "https://github.com/dotnet/sdk/issues/29111 https://github.com/dotnet/sdk/issues/28429")]
public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works()
{
// Arrange
@@ -221,24 +214,6 @@ public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works()
new FileInfo(path).Should().Exist();
var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path));
- // We have to special case this test given we are forcing `blazorwasm` to be a `net5` project above.
- // Given this, the `dotnet.*.js` file produced will be a dotnet.5.*.*.js file in line with the TFM and not the SDK (which is .NET 6 or beyond).
- // This conflicts with our assumptions throughout the rest of the test suite that the SDK version matches the TFM.
- // To minimize special casing throughout the entire test suite, we just update this particular test's assets to reflect the SDK version.
- var numFilesUpdated = 0;
- foreach (var f in manifest.Assets)
- {
- if (Regex.Match(f.RelativePath, DotNet5JSRegexPattern).Success)
- {
- f.Identity = Regex.Replace(f.Identity, DotNet5JSRegexPattern, DotNet5JSTemplate);
- f.RelativePath = Regex.Replace(f.RelativePath, DotNet5JSRegexPattern, DotNet5JSTemplate);
- f.OriginalItemSpec = Regex.Replace(f.OriginalItemSpec, DotNet5JSRegexPattern, DotNet5JSTemplate);
-
- numFilesUpdated++;
- }
- }
- Assert.Equal(2, numFilesUpdated);
-
AssertManifest(manifest, LoadBuildManifest());
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
@@ -246,7 +221,7 @@ public void StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works()
new FileInfo(finalPath).Should().Exist();
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -293,27 +268,10 @@ public void StaticWebAssets_BackCompatibilityPublish_Hosted_Works()
new FileInfo(path).Should().Exist();
var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path));
- // We have to special case this test given we are forcing `blazorwasm` to be a `net5` project above.
- // Given this, the `dotnet.*.js` file produced will be a dotnet.5.*.*.js file in line with the TFM and not the SDK (which is .NET 6 or beyond).
- // This conflicts with our assumptions throughout the rest of the test suite that the SDK version matches the TFM.
- // To minimize special casing throughout the entire test suite, we just update this particular test's assets to reflect the SDK version.
- var numFilesUpdated = 0;
- var frameworkFolder = Path.Combine(publishPath, "wwwroot", "_framework");
- var frameworkFolderFiles = Directory.GetFiles(frameworkFolder, "*", new EnumerationOptions { RecurseSubdirectories = false });
- foreach (var f in frameworkFolderFiles)
- {
- if (Regex.Match(f, DotNet5JSRegexPattern).Success)
- {
- File.Move(f, Regex.Replace(f, DotNet5JSRegexPattern, DotNet5JSTemplate));
- numFilesUpdated++;
- }
- }
- Assert.Equal(3, numFilesUpdated);
-
AssertManifest(manifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
publishPath,
intermediateOutputPath);
}
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj
index ebcc404996a7..371b32c3c542 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests.csproj
@@ -37,6 +37,8 @@
+
+
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json
index b3e1e5e85ef8..963de6c8f182 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Build.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Build",
@@ -31,13 +31,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Build",
@@ -48,13 +48,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Build",
@@ -65,13 +65,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Build",
@@ -82,13 +82,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Build",
@@ -99,13 +99,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Build",
@@ -116,13 +116,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll",
"AssetKind": "Build",
@@ -133,13 +133,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Build",
@@ -150,13 +150,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Build",
@@ -167,13 +167,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Build",
@@ -184,13 +184,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Build",
@@ -201,13 +201,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Build",
@@ -218,13 +218,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Build",
@@ -235,13 +235,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Build",
@@ -252,13 +252,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Build",
@@ -269,13 +269,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Build",
@@ -286,13 +286,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Build",
@@ -303,13 +303,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Build",
@@ -320,13 +320,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Build",
@@ -337,13 +337,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Build",
@@ -354,13 +354,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Build",
@@ -371,13 +371,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Build",
@@ -388,13 +388,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Build",
@@ -405,13 +405,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
"AssetKind": "Build",
@@ -422,13 +422,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll",
"AssetKind": "Build",
@@ -439,13 +439,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
"AssetKind": "Build",
@@ -456,13 +456,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll",
"AssetKind": "Build",
@@ -473,13 +473,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll",
"AssetKind": "Build",
@@ -490,13 +490,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.AppContext.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Build",
@@ -507,13 +507,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Buffers.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Build",
@@ -524,13 +524,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll",
"AssetKind": "Build",
@@ -541,13 +541,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Build",
@@ -558,13 +558,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Build",
@@ -575,13 +575,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Build",
@@ -592,13 +592,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Build",
@@ -609,13 +609,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
"AssetKind": "Build",
@@ -626,13 +626,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
"AssetKind": "Build",
@@ -643,13 +643,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Build",
@@ -660,13 +660,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Build",
@@ -677,13 +677,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Build",
@@ -694,13 +694,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll",
"AssetKind": "Build",
@@ -711,13 +711,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Build",
@@ -728,13 +728,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Console.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll",
"AssetKind": "Build",
@@ -745,13 +745,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll",
"AssetKind": "Build",
@@ -762,13 +762,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.Common.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll",
"AssetKind": "Build",
@@ -779,13 +779,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll",
"AssetKind": "Build",
@@ -796,13 +796,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll",
"AssetKind": "Build",
@@ -813,13 +813,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Build",
@@ -830,13 +830,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Build",
@@ -847,13 +847,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
"AssetKind": "Build",
@@ -864,13 +864,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll",
"AssetKind": "Build",
@@ -881,13 +881,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
"AssetKind": "Build",
@@ -898,13 +898,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
"AssetKind": "Build",
@@ -915,13 +915,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll",
"AssetKind": "Build",
@@ -932,13 +932,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
"AssetKind": "Build",
@@ -949,13 +949,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Build",
@@ -966,13 +966,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll",
"AssetKind": "Build",
@@ -983,13 +983,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll",
"AssetKind": "Build",
@@ -1000,13 +1000,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll",
"AssetKind": "Build",
@@ -1017,13 +1017,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll",
"AssetKind": "Build",
@@ -1034,13 +1034,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll",
"AssetKind": "Build",
@@ -1051,13 +1051,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll",
"AssetKind": "Build",
@@ -1068,13 +1068,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll",
"AssetKind": "Build",
@@ -1085,13 +1085,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll",
"AssetKind": "Build",
@@ -1102,13 +1102,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
"AssetKind": "Build",
@@ -1119,13 +1119,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
"AssetKind": "Build",
@@ -1136,13 +1136,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll",
"AssetKind": "Build",
@@ -1153,13 +1153,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
"AssetKind": "Build",
@@ -1170,13 +1170,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
"AssetKind": "Build",
@@ -1187,13 +1187,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
"AssetKind": "Build",
@@ -1204,13 +1204,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Build",
@@ -1221,13 +1221,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll",
"AssetKind": "Build",
@@ -1238,13 +1238,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll",
"AssetKind": "Build",
@@ -1255,13 +1255,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
"AssetKind": "Build",
@@ -1272,13 +1272,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Build",
@@ -1289,13 +1289,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
"AssetKind": "Build",
@@ -1306,13 +1306,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll",
"AssetKind": "Build",
@@ -1323,13 +1323,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
"AssetKind": "Build",
@@ -1340,13 +1340,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll",
"AssetKind": "Build",
@@ -1357,13 +1357,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Build",
@@ -1374,13 +1374,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll",
"AssetKind": "Build",
@@ -1391,13 +1391,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll",
"AssetKind": "Build",
@@ -1408,13 +1408,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Build",
@@ -1425,13 +1425,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Build",
@@ -1442,13 +1442,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Memory.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll",
"AssetKind": "Build",
@@ -1459,13 +1459,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Build",
@@ -1476,13 +1476,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll",
"AssetKind": "Build",
@@ -1493,13 +1493,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll",
"AssetKind": "Build",
@@ -1510,13 +1510,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll",
"AssetKind": "Build",
@@ -1527,13 +1527,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll",
"AssetKind": "Build",
@@ -1544,13 +1544,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll",
"AssetKind": "Build",
@@ -1561,13 +1561,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll",
"AssetKind": "Build",
@@ -1578,13 +1578,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll",
"AssetKind": "Build",
@@ -1595,13 +1595,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll",
"AssetKind": "Build",
@@ -1612,13 +1612,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll",
"AssetKind": "Build",
@@ -1629,13 +1629,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll",
"AssetKind": "Build",
@@ -1646,13 +1646,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll",
"AssetKind": "Build",
@@ -1663,13 +1663,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll",
"AssetKind": "Build",
@@ -1680,13 +1680,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
"AssetKind": "Build",
@@ -1697,13 +1697,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll",
"AssetKind": "Build",
@@ -1714,13 +1714,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll",
"AssetKind": "Build",
@@ -1731,13 +1731,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll",
"AssetKind": "Build",
@@ -1748,13 +1748,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll",
"AssetKind": "Build",
@@ -1765,13 +1765,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll",
"AssetKind": "Build",
@@ -1782,13 +1782,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll",
"AssetKind": "Build",
@@ -1799,13 +1799,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Build",
@@ -1816,13 +1816,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Build",
@@ -1836,10 +1836,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll",
"AssetKind": "Build",
@@ -1850,13 +1850,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Build",
@@ -1867,13 +1867,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Build",
@@ -1884,13 +1884,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll",
"AssetKind": "Build",
@@ -1901,13 +1901,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll",
"AssetKind": "Build",
@@ -1918,13 +1918,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
"AssetKind": "Build",
@@ -1935,13 +1935,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Build",
@@ -1952,13 +1952,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Build",
@@ -1969,13 +1969,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll",
"AssetKind": "Build",
@@ -1986,13 +1986,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll",
"AssetKind": "Build",
@@ -2003,13 +2003,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll",
"AssetKind": "Build",
@@ -2020,13 +2020,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Build",
@@ -2037,13 +2037,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
"AssetKind": "Build",
@@ -2054,13 +2054,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll",
"AssetKind": "Build",
@@ -2071,13 +2071,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll",
"AssetKind": "Build",
@@ -2088,13 +2088,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Build",
@@ -2105,13 +2105,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll",
"AssetKind": "Build",
@@ -2122,13 +2122,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Build",
@@ -2139,13 +2139,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
"AssetKind": "Build",
@@ -2156,13 +2156,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Build",
@@ -2173,13 +2173,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll",
"AssetKind": "Build",
@@ -2190,13 +2190,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Build",
@@ -2207,13 +2207,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll",
"AssetKind": "Build",
@@ -2224,13 +2224,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll",
"AssetKind": "Build",
@@ -2241,13 +2241,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Build",
@@ -2258,13 +2258,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll",
"AssetKind": "Build",
@@ -2275,13 +2275,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
"AssetKind": "Build",
@@ -2292,13 +2292,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
"AssetKind": "Build",
@@ -2309,13 +2309,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
"AssetKind": "Build",
@@ -2326,13 +2326,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
"AssetKind": "Build",
@@ -2343,13 +2343,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll",
"AssetKind": "Build",
@@ -2360,13 +2360,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Build",
@@ -2377,13 +2377,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll",
"AssetKind": "Build",
@@ -2394,13 +2394,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Build",
@@ -2411,13 +2411,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Build",
@@ -2428,13 +2428,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
"AssetKind": "Build",
@@ -2445,13 +2445,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
"AssetKind": "Build",
@@ -2462,13 +2462,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
"AssetKind": "Build",
@@ -2479,13 +2479,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
"AssetKind": "Build",
@@ -2496,13 +2496,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Build",
@@ -2513,13 +2513,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
"AssetKind": "Build",
@@ -2530,13 +2530,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll",
"AssetKind": "Build",
@@ -2547,13 +2547,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll",
"AssetKind": "Build",
@@ -2564,13 +2564,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll",
"AssetKind": "Build",
@@ -2581,13 +2581,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll",
"AssetKind": "Build",
@@ -2598,13 +2598,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll",
"AssetKind": "Build",
@@ -2615,13 +2615,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll",
"AssetKind": "Build",
@@ -2632,13 +2632,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
"AssetKind": "Build",
@@ -2649,13 +2649,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
"AssetKind": "Build",
@@ -2666,13 +2666,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll",
"AssetKind": "Build",
@@ -2683,13 +2683,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Build",
@@ -2700,13 +2700,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Build",
@@ -2717,13 +2717,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll",
"AssetKind": "Build",
@@ -2734,13 +2734,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll",
"AssetKind": "Build",
@@ -2751,13 +2751,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll",
"AssetKind": "Build",
@@ -2768,13 +2768,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
"AssetKind": "Build",
@@ -2785,13 +2785,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
"AssetKind": "Build",
@@ -2802,13 +2802,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
"AssetKind": "Build",
@@ -2819,13 +2819,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Build",
@@ -2836,13 +2836,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll",
"AssetKind": "Build",
@@ -2853,13 +2853,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Build",
@@ -2870,13 +2870,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll",
"AssetKind": "Build",
@@ -2887,13 +2887,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Build",
@@ -2904,13 +2904,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll",
"AssetKind": "Build",
@@ -2921,13 +2921,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll",
"AssetKind": "Build",
@@ -2938,13 +2938,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll",
"AssetKind": "Build",
@@ -2955,13 +2955,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll",
"AssetKind": "Build",
@@ -2972,13 +2972,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll",
"AssetKind": "Build",
@@ -2989,13 +2989,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll",
"AssetKind": "Build",
@@ -3006,13 +3006,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll",
"AssetKind": "Build",
@@ -3023,13 +3023,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll",
"AssetKind": "Build",
@@ -3040,13 +3040,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll",
"AssetKind": "Build",
@@ -3057,13 +3057,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll",
"AssetKind": "Build",
@@ -3074,13 +3074,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
"AssetKind": "Build",
@@ -3091,13 +3091,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll",
"AssetKind": "Build",
@@ -3108,13 +3108,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll",
"AssetKind": "Build",
@@ -3125,13 +3125,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll",
"AssetKind": "Build",
@@ -3142,13 +3142,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll",
"AssetKind": "Build",
@@ -3159,13 +3159,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Build",
@@ -3176,13 +3176,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll",
"AssetKind": "Build",
@@ -3193,13 +3193,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\WindowsBase.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Build",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -3227,13 +3227,13 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Build",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb",
"AssetKind": "Build",
@@ -3264,12 +3264,12 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Build",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Build",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Build",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Build",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Build",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Build",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll",
"AssetKind": "Build",
@@ -3397,13 +3397,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\mscorlib.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Build",
@@ -3414,3396 +3414,3396 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\netstandard.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.lib.module.js",
"AssetKind": "All",
@@ -6817,10 +6817,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -6834,10 +6834,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.files.json
index 6dab85f8eadc..a66af4964ce3 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,4 +1,473 @@
[
+ "${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.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.Runtime.InteropServices.JavaScript.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.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.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",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
+ "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
@@ -400,8 +869,10 @@
"${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll",
"${OutputPath}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
@@ -467,242 +938,5 @@
"${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll",
"${OutputPath}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz",
"${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
- "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.CSharp.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.pdb.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/blazorwasm.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz]]",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js",
- "${ProjectPath}\\blazorwasm\\wwwroot\\js\\LinkedScript.js"
-]
+ "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json
index 39f071c8697d..05228f2e1ff7 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Build_SatelliteAssembliesAreCopiedToBuildOutput.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\classlibrarywithsatelliteassemblies.csproj",
+ "Identity": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\classlibrarywithsatelliteassemblies.csproj",
"Version": 2,
"Source": "classlibrarywithsatelliteassemblies",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\LinkBaseToWebRoot\\js\\LinkedScript.js",
+ "Identity": "${ProjectPath}\\LinkBaseToWebRoot\\js\\LinkedScript.js",
"SourceId": "blazorwasm",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "js/LinkedScript.js",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "..\\LinkBaseToWebRoot\\js\\LinkedScript.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Publish",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "LinkToWebRoot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Build",
@@ -95,13 +95,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Build",
@@ -112,13 +112,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Build",
@@ -129,13 +129,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Build",
@@ -146,13 +146,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Build",
@@ -163,13 +163,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Build",
@@ -180,13 +180,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll",
"AssetKind": "Build",
@@ -197,13 +197,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll",
"AssetKind": "Build",
@@ -214,13 +214,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.CodeAnalysis.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CodeAnalysis.dll",
"AssetKind": "Build",
@@ -231,13 +231,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.CodeAnalysis.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.CodeAnalysis.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Build",
@@ -248,13 +248,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Build",
@@ -265,13 +265,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Build",
@@ -282,13 +282,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Build",
@@ -299,13 +299,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Build",
@@ -316,13 +316,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Build",
@@ -333,13 +333,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Build",
@@ -350,13 +350,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Build",
@@ -367,13 +367,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Build",
@@ -384,13 +384,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Build",
@@ -401,13 +401,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Build",
@@ -418,13 +418,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Build",
@@ -435,13 +435,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Build",
@@ -452,13 +452,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Build",
@@ -469,13 +469,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Build",
@@ -486,13 +486,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Build",
@@ -503,13 +503,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
"AssetKind": "Build",
@@ -520,13 +520,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll",
"AssetKind": "Build",
@@ -537,13 +537,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
"AssetKind": "Build",
@@ -554,13 +554,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll",
"AssetKind": "Build",
@@ -571,13 +571,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Build",
@@ -588,13 +588,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb",
"AssetKind": "Build",
@@ -605,13 +605,13 @@
"AssetTraitValue": "symbol",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll",
"AssetKind": "Build",
@@ -622,13 +622,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.AppContext.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Build",
@@ -639,13 +639,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Buffers.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Build",
@@ -656,13 +656,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll",
"AssetKind": "Build",
@@ -673,13 +673,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Build",
@@ -690,13 +690,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Build",
@@ -707,13 +707,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Build",
@@ -724,13 +724,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Build",
@@ -741,13 +741,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
"AssetKind": "Build",
@@ -758,13 +758,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
"AssetKind": "Build",
@@ -775,13 +775,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Build",
@@ -792,13 +792,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Build",
@@ -809,13 +809,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Build",
@@ -826,13 +826,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll",
"AssetKind": "Build",
@@ -843,13 +843,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Build",
@@ -860,13 +860,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Console.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll",
"AssetKind": "Build",
@@ -877,13 +877,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll",
"AssetKind": "Build",
@@ -894,13 +894,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.Common.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll",
"AssetKind": "Build",
@@ -911,13 +911,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll",
"AssetKind": "Build",
@@ -928,13 +928,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll",
"AssetKind": "Build",
@@ -945,13 +945,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Build",
@@ -962,13 +962,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Build",
@@ -979,13 +979,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
"AssetKind": "Build",
@@ -996,13 +996,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll",
"AssetKind": "Build",
@@ -1013,13 +1013,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
"AssetKind": "Build",
@@ -1030,13 +1030,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
"AssetKind": "Build",
@@ -1047,13 +1047,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll",
"AssetKind": "Build",
@@ -1064,13 +1064,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
"AssetKind": "Build",
@@ -1081,13 +1081,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Build",
@@ -1098,13 +1098,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll",
"AssetKind": "Build",
@@ -1115,13 +1115,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll",
"AssetKind": "Build",
@@ -1132,13 +1132,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll",
"AssetKind": "Build",
@@ -1149,13 +1149,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll",
"AssetKind": "Build",
@@ -1166,13 +1166,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll",
"AssetKind": "Build",
@@ -1183,13 +1183,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll",
"AssetKind": "Build",
@@ -1200,13 +1200,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll",
"AssetKind": "Build",
@@ -1217,13 +1217,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll",
"AssetKind": "Build",
@@ -1234,13 +1234,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
"AssetKind": "Build",
@@ -1251,13 +1251,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
"AssetKind": "Build",
@@ -1268,13 +1268,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll",
"AssetKind": "Build",
@@ -1285,13 +1285,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
"AssetKind": "Build",
@@ -1302,13 +1302,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
"AssetKind": "Build",
@@ -1319,13 +1319,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
"AssetKind": "Build",
@@ -1336,13 +1336,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Build",
@@ -1353,13 +1353,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll",
"AssetKind": "Build",
@@ -1370,13 +1370,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll",
"AssetKind": "Build",
@@ -1387,13 +1387,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
"AssetKind": "Build",
@@ -1404,13 +1404,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Build",
@@ -1421,13 +1421,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
"AssetKind": "Build",
@@ -1438,13 +1438,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll",
"AssetKind": "Build",
@@ -1455,13 +1455,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
"AssetKind": "Build",
@@ -1472,13 +1472,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll",
"AssetKind": "Build",
@@ -1489,13 +1489,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Build",
@@ -1506,13 +1506,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll",
"AssetKind": "Build",
@@ -1523,13 +1523,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll",
"AssetKind": "Build",
@@ -1540,13 +1540,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Build",
@@ -1557,13 +1557,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Build",
@@ -1574,13 +1574,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Memory.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll",
"AssetKind": "Build",
@@ -1591,13 +1591,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Build",
@@ -1608,13 +1608,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll",
"AssetKind": "Build",
@@ -1625,13 +1625,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll",
"AssetKind": "Build",
@@ -1642,13 +1642,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll",
"AssetKind": "Build",
@@ -1659,13 +1659,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll",
"AssetKind": "Build",
@@ -1676,13 +1676,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll",
"AssetKind": "Build",
@@ -1693,13 +1693,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll",
"AssetKind": "Build",
@@ -1710,13 +1710,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll",
"AssetKind": "Build",
@@ -1727,13 +1727,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll",
"AssetKind": "Build",
@@ -1744,13 +1744,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll",
"AssetKind": "Build",
@@ -1761,13 +1761,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll",
"AssetKind": "Build",
@@ -1778,13 +1778,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll",
"AssetKind": "Build",
@@ -1795,13 +1795,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll",
"AssetKind": "Build",
@@ -1812,13 +1812,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
"AssetKind": "Build",
@@ -1829,13 +1829,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll",
"AssetKind": "Build",
@@ -1846,13 +1846,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll",
"AssetKind": "Build",
@@ -1863,13 +1863,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll",
"AssetKind": "Build",
@@ -1880,13 +1880,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll",
"AssetKind": "Build",
@@ -1897,13 +1897,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll",
"AssetKind": "Build",
@@ -1914,13 +1914,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll",
"AssetKind": "Build",
@@ -1931,13 +1931,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Build",
@@ -1948,13 +1948,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Build",
@@ -1968,10 +1968,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll",
"AssetKind": "Build",
@@ -1982,13 +1982,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Build",
@@ -1999,13 +1999,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Build",
@@ -2016,13 +2016,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll",
"AssetKind": "Build",
@@ -2033,13 +2033,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll",
"AssetKind": "Build",
@@ -2050,13 +2050,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
"AssetKind": "Build",
@@ -2067,13 +2067,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Build",
@@ -2084,13 +2084,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Build",
@@ -2101,13 +2101,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll",
"AssetKind": "Build",
@@ -2118,13 +2118,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll",
"AssetKind": "Build",
@@ -2135,13 +2135,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll",
"AssetKind": "Build",
@@ -2152,13 +2152,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Build",
@@ -2169,13 +2169,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
"AssetKind": "Build",
@@ -2186,13 +2186,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll",
"AssetKind": "Build",
@@ -2203,13 +2203,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll",
"AssetKind": "Build",
@@ -2220,13 +2220,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Build",
@@ -2237,13 +2237,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll",
"AssetKind": "Build",
@@ -2254,13 +2254,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Build",
@@ -2271,13 +2271,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
"AssetKind": "Build",
@@ -2288,13 +2288,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Build",
@@ -2305,13 +2305,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll",
"AssetKind": "Build",
@@ -2322,13 +2322,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Build",
@@ -2339,13 +2339,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll",
"AssetKind": "Build",
@@ -2356,13 +2356,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll",
"AssetKind": "Build",
@@ -2373,13 +2373,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Build",
@@ -2390,13 +2390,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll",
"AssetKind": "Build",
@@ -2407,13 +2407,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
"AssetKind": "Build",
@@ -2424,13 +2424,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
"AssetKind": "Build",
@@ -2441,13 +2441,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
"AssetKind": "Build",
@@ -2458,13 +2458,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
"AssetKind": "Build",
@@ -2475,13 +2475,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll",
"AssetKind": "Build",
@@ -2492,13 +2492,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Build",
@@ -2509,13 +2509,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll",
"AssetKind": "Build",
@@ -2526,13 +2526,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Build",
@@ -2543,13 +2543,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Build",
@@ -2560,13 +2560,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
"AssetKind": "Build",
@@ -2577,13 +2577,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
"AssetKind": "Build",
@@ -2594,13 +2594,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
"AssetKind": "Build",
@@ -2611,13 +2611,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
"AssetKind": "Build",
@@ -2628,13 +2628,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Build",
@@ -2645,13 +2645,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
"AssetKind": "Build",
@@ -2662,13 +2662,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll",
"AssetKind": "Build",
@@ -2679,13 +2679,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll",
"AssetKind": "Build",
@@ -2696,13 +2696,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll",
"AssetKind": "Build",
@@ -2713,13 +2713,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll",
"AssetKind": "Build",
@@ -2730,13 +2730,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll",
"AssetKind": "Build",
@@ -2747,13 +2747,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll",
"AssetKind": "Build",
@@ -2764,13 +2764,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
"AssetKind": "Build",
@@ -2781,13 +2781,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
"AssetKind": "Build",
@@ -2798,13 +2798,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll",
"AssetKind": "Build",
@@ -2815,13 +2815,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Build",
@@ -2832,13 +2832,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Build",
@@ -2849,13 +2849,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll",
"AssetKind": "Build",
@@ -2866,13 +2866,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll",
"AssetKind": "Build",
@@ -2883,13 +2883,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll",
"AssetKind": "Build",
@@ -2900,13 +2900,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
"AssetKind": "Build",
@@ -2917,13 +2917,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
"AssetKind": "Build",
@@ -2934,13 +2934,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
"AssetKind": "Build",
@@ -2951,13 +2951,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Build",
@@ -2968,13 +2968,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll",
"AssetKind": "Build",
@@ -2985,13 +2985,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Build",
@@ -3002,13 +3002,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll",
"AssetKind": "Build",
@@ -3019,13 +3019,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Build",
@@ -3036,13 +3036,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll",
"AssetKind": "Build",
@@ -3053,13 +3053,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll",
"AssetKind": "Build",
@@ -3070,13 +3070,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll",
"AssetKind": "Build",
@@ -3087,13 +3087,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll",
"AssetKind": "Build",
@@ -3104,13 +3104,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll",
"AssetKind": "Build",
@@ -3121,13 +3121,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll",
"AssetKind": "Build",
@@ -3138,13 +3138,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll",
"AssetKind": "Build",
@@ -3155,13 +3155,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll",
"AssetKind": "Build",
@@ -3172,13 +3172,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll",
"AssetKind": "Build",
@@ -3189,13 +3189,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll",
"AssetKind": "Build",
@@ -3206,13 +3206,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
"AssetKind": "Build",
@@ -3223,13 +3223,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll",
"AssetKind": "Build",
@@ -3240,13 +3240,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll",
"AssetKind": "Build",
@@ -3257,13 +3257,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll",
"AssetKind": "Build",
@@ -3274,13 +3274,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll",
"AssetKind": "Build",
@@ -3291,13 +3291,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Build",
@@ -3308,13 +3308,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll",
"AssetKind": "Build",
@@ -3325,13 +3325,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\WindowsBase.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Build",
@@ -3345,10 +3345,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -3359,13 +3359,13 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Build",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb",
"AssetKind": "Build",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll",
"AssetKind": "Build",
@@ -3410,13 +3410,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll"
+ "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb",
"AssetKind": "Build",
@@ -3427,83 +3427,83 @@
"AssetTraitValue": "symbol",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\classlibrarywithsatelliteassemblies.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "cs",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "cs",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\cs\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\cs\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "de",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "de",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\de\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\de\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -3515,10 +3515,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Build",
@@ -3532,10 +3532,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Build",
@@ -3549,95 +3549,95 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "es-ES",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\classlibrarywithsatelliteassemblies\\bin\\Debug\\${Tfm}\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "es",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "es",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\es\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\es\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "fr",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "fr",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\fr\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\fr\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Build",
@@ -3651,10 +3651,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Build",
@@ -3668,10 +3668,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Build",
@@ -3685,10 +3685,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Build",
@@ -3702,129 +3702,129 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "it",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "it",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\it\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\it\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ja",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ja",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ja\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ja\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/blazorwasm.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ja",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\ja\\blazorwasm.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ko",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ko",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ko\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ko\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll",
"AssetKind": "Build",
@@ -3835,13 +3835,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\mscorlib.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Build",
@@ -3852,4178 +3852,4178 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\netstandard.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "pl",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "pl",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pl\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pl\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "pt-BR",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "pt-BR",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\pt-BR\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\pt-BR\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ru",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "ru",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\ru\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\ru\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "tr",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "tr",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\tr\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\tr\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "zh-Hans",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "zh-Hans",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "zh-Hant",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.csharp\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Related",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Culture",
"AssetTraitValue": "zh-Hant",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.codeanalysis.common\\${PackageVersion}\\lib\\${PackageTfm}\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CodeAnalysis.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CodeAnalysis.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CodeAnalysis.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CodeAnalysis.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CodeAnalysis.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CodeAnalysis.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/classlibrarywithsatelliteassemblies.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/classlibrarywithsatelliteassemblies.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/classlibrarywithsatelliteassemblies.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\classlibrarywithsatelliteassemblies.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\classlibrarywithsatelliteassemblies.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/cs/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/cs/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\cs\\_framework\\cs\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/de/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/de/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/de/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\de\\_framework\\de\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es-ES/classlibrarywithsatelliteassemblies.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es-ES\\_framework\\es-ES\\classlibrarywithsatelliteassemblies.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/es/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/es/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\es\\_framework\\es\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/fr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/fr/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\fr\\_framework\\fr\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/it/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/it/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/it/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\it\\_framework\\it\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ja/blazorwasm.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ja\\blazorwasm.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ja/blazorwasm.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\blazorwasm.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ja\\_framework\\ja\\blazorwasm.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ko/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ko/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ko\\_framework\\ko\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pl/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pl/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pl\\_framework\\pl\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/pt-BR/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\pt-BR\\_framework\\pt-BR\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ru/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/ru/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\ru\\_framework\\ru\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/tr/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/tr/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\tr\\_framework\\tr\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hans/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hans\\_framework\\zh-Hans\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.CSharp.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/zh-Hant/Microsoft.CodeAnalysis.resources.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\zh-Hant\\_framework\\zh-Hant\\Microsoft.CodeAnalysis.resources.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Publish",
@@ -8037,10 +8037,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Build",
@@ -8054,10 +8054,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Publish",
@@ -8071,10 +8071,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Build",
@@ -8088,10 +8088,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -8105,10 +8105,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Build",
@@ -8122,10 +8122,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -8139,10 +8139,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -8156,10 +8156,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json
index 2032887ff586..001b912d9b72 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JSModules_ManifestIncludesModuleTargetPaths.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 2,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
+ "Identity": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
"SourceId": "blazorhosted",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/blazorhosted",
"RelativePath": "blazorhosted.modules.json",
"AssetKind": "Build",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Build",
@@ -78,13 +78,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Build",
@@ -95,13 +95,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Build",
@@ -112,13 +112,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Build",
@@ -129,13 +129,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Build",
@@ -146,13 +146,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Build",
@@ -163,13 +163,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll",
"AssetKind": "Build",
@@ -180,13 +180,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Build",
@@ -197,13 +197,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Build",
@@ -214,13 +214,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Build",
@@ -231,13 +231,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Build",
@@ -248,13 +248,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Build",
@@ -265,13 +265,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Build",
@@ -282,13 +282,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Build",
@@ -299,13 +299,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Build",
@@ -316,13 +316,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Build",
@@ -333,13 +333,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Build",
@@ -350,13 +350,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Build",
@@ -367,13 +367,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Build",
@@ -384,13 +384,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Build",
@@ -401,13 +401,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Build",
@@ -418,13 +418,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Build",
@@ -435,13 +435,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Build",
@@ -452,13 +452,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
"AssetKind": "Build",
@@ -469,13 +469,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll",
"AssetKind": "Build",
@@ -486,13 +486,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
"AssetKind": "Build",
@@ -503,13 +503,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll",
"AssetKind": "Build",
@@ -520,13 +520,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Build",
@@ -537,13 +537,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb",
"AssetKind": "Build",
@@ -554,13 +554,13 @@
"AssetTraitValue": "symbol",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll",
"AssetKind": "Build",
@@ -571,13 +571,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.AppContext.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Build",
@@ -588,13 +588,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Buffers.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Build",
@@ -605,13 +605,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll",
"AssetKind": "Build",
@@ -622,13 +622,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Build",
@@ -639,13 +639,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Build",
@@ -656,13 +656,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Build",
@@ -673,13 +673,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Build",
@@ -690,13 +690,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
"AssetKind": "Build",
@@ -707,13 +707,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
"AssetKind": "Build",
@@ -724,13 +724,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Build",
@@ -741,13 +741,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Build",
@@ -758,13 +758,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Build",
@@ -775,13 +775,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll",
"AssetKind": "Build",
@@ -792,13 +792,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Build",
@@ -809,13 +809,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Console.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll",
"AssetKind": "Build",
@@ -826,13 +826,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll",
"AssetKind": "Build",
@@ -843,13 +843,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.Common.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll",
"AssetKind": "Build",
@@ -860,13 +860,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll",
"AssetKind": "Build",
@@ -877,13 +877,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll",
"AssetKind": "Build",
@@ -894,13 +894,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Build",
@@ -911,13 +911,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Build",
@@ -928,13 +928,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
"AssetKind": "Build",
@@ -945,13 +945,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll",
"AssetKind": "Build",
@@ -962,13 +962,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
"AssetKind": "Build",
@@ -979,13 +979,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
"AssetKind": "Build",
@@ -996,13 +996,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll",
"AssetKind": "Build",
@@ -1013,13 +1013,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
"AssetKind": "Build",
@@ -1030,13 +1030,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Build",
@@ -1047,13 +1047,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll",
"AssetKind": "Build",
@@ -1064,13 +1064,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll",
"AssetKind": "Build",
@@ -1081,13 +1081,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll",
"AssetKind": "Build",
@@ -1098,13 +1098,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll",
"AssetKind": "Build",
@@ -1115,13 +1115,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll",
"AssetKind": "Build",
@@ -1132,13 +1132,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll",
"AssetKind": "Build",
@@ -1149,13 +1149,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll",
"AssetKind": "Build",
@@ -1166,13 +1166,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll",
"AssetKind": "Build",
@@ -1183,13 +1183,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
"AssetKind": "Build",
@@ -1200,13 +1200,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
"AssetKind": "Build",
@@ -1217,13 +1217,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll",
"AssetKind": "Build",
@@ -1234,13 +1234,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
"AssetKind": "Build",
@@ -1251,13 +1251,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
"AssetKind": "Build",
@@ -1268,13 +1268,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
"AssetKind": "Build",
@@ -1285,13 +1285,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Build",
@@ -1302,13 +1302,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll",
"AssetKind": "Build",
@@ -1319,13 +1319,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll",
"AssetKind": "Build",
@@ -1336,13 +1336,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
"AssetKind": "Build",
@@ -1353,13 +1353,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Build",
@@ -1370,13 +1370,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
"AssetKind": "Build",
@@ -1387,13 +1387,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll",
"AssetKind": "Build",
@@ -1404,13 +1404,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
"AssetKind": "Build",
@@ -1421,13 +1421,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll",
"AssetKind": "Build",
@@ -1438,13 +1438,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Build",
@@ -1455,13 +1455,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll",
"AssetKind": "Build",
@@ -1472,13 +1472,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll",
"AssetKind": "Build",
@@ -1489,13 +1489,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Build",
@@ -1506,13 +1506,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Build",
@@ -1523,13 +1523,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Memory.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll",
"AssetKind": "Build",
@@ -1540,13 +1540,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Build",
@@ -1557,13 +1557,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll",
"AssetKind": "Build",
@@ -1574,13 +1574,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll",
"AssetKind": "Build",
@@ -1591,13 +1591,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll",
"AssetKind": "Build",
@@ -1608,13 +1608,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll",
"AssetKind": "Build",
@@ -1625,13 +1625,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll",
"AssetKind": "Build",
@@ -1642,13 +1642,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll",
"AssetKind": "Build",
@@ -1659,13 +1659,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll",
"AssetKind": "Build",
@@ -1676,13 +1676,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll",
"AssetKind": "Build",
@@ -1693,13 +1693,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll",
"AssetKind": "Build",
@@ -1710,13 +1710,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll",
"AssetKind": "Build",
@@ -1727,13 +1727,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll",
"AssetKind": "Build",
@@ -1744,13 +1744,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll",
"AssetKind": "Build",
@@ -1761,13 +1761,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
"AssetKind": "Build",
@@ -1778,13 +1778,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll",
"AssetKind": "Build",
@@ -1795,13 +1795,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll",
"AssetKind": "Build",
@@ -1812,13 +1812,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll",
"AssetKind": "Build",
@@ -1829,13 +1829,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll",
"AssetKind": "Build",
@@ -1846,13 +1846,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll",
"AssetKind": "Build",
@@ -1863,13 +1863,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll",
"AssetKind": "Build",
@@ -1880,13 +1880,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Build",
@@ -1897,13 +1897,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Build",
@@ -1917,10 +1917,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll",
"AssetKind": "Build",
@@ -1931,13 +1931,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Build",
@@ -1948,13 +1948,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Build",
@@ -1965,13 +1965,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll",
"AssetKind": "Build",
@@ -1982,13 +1982,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll",
"AssetKind": "Build",
@@ -1999,13 +1999,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
"AssetKind": "Build",
@@ -2016,13 +2016,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Build",
@@ -2033,13 +2033,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Build",
@@ -2050,13 +2050,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll",
"AssetKind": "Build",
@@ -2067,13 +2067,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll",
"AssetKind": "Build",
@@ -2084,13 +2084,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll",
"AssetKind": "Build",
@@ -2101,13 +2101,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Build",
@@ -2118,13 +2118,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
"AssetKind": "Build",
@@ -2135,13 +2135,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll",
"AssetKind": "Build",
@@ -2152,13 +2152,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll",
"AssetKind": "Build",
@@ -2169,13 +2169,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Build",
@@ -2186,13 +2186,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll",
"AssetKind": "Build",
@@ -2203,13 +2203,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Build",
@@ -2220,13 +2220,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
"AssetKind": "Build",
@@ -2237,13 +2237,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Build",
@@ -2254,13 +2254,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll",
"AssetKind": "Build",
@@ -2271,13 +2271,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Build",
@@ -2288,13 +2288,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll",
"AssetKind": "Build",
@@ -2305,13 +2305,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll",
"AssetKind": "Build",
@@ -2322,13 +2322,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Build",
@@ -2339,13 +2339,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll",
"AssetKind": "Build",
@@ -2356,13 +2356,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
"AssetKind": "Build",
@@ -2373,13 +2373,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
"AssetKind": "Build",
@@ -2390,13 +2390,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
"AssetKind": "Build",
@@ -2407,13 +2407,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
"AssetKind": "Build",
@@ -2424,13 +2424,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll",
"AssetKind": "Build",
@@ -2441,13 +2441,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Build",
@@ -2458,13 +2458,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll",
"AssetKind": "Build",
@@ -2475,13 +2475,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Build",
@@ -2492,13 +2492,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Build",
@@ -2509,13 +2509,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
"AssetKind": "Build",
@@ -2526,13 +2526,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
"AssetKind": "Build",
@@ -2543,13 +2543,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
"AssetKind": "Build",
@@ -2560,13 +2560,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
"AssetKind": "Build",
@@ -2577,13 +2577,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Build",
@@ -2594,13 +2594,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
"AssetKind": "Build",
@@ -2611,13 +2611,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll",
"AssetKind": "Build",
@@ -2628,13 +2628,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll",
"AssetKind": "Build",
@@ -2645,13 +2645,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll",
"AssetKind": "Build",
@@ -2662,13 +2662,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll",
"AssetKind": "Build",
@@ -2679,13 +2679,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll",
"AssetKind": "Build",
@@ -2696,13 +2696,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll",
"AssetKind": "Build",
@@ -2713,13 +2713,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
"AssetKind": "Build",
@@ -2730,13 +2730,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
"AssetKind": "Build",
@@ -2747,13 +2747,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll",
"AssetKind": "Build",
@@ -2764,13 +2764,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Build",
@@ -2781,13 +2781,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Build",
@@ -2798,13 +2798,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll",
"AssetKind": "Build",
@@ -2815,13 +2815,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll",
"AssetKind": "Build",
@@ -2832,13 +2832,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll",
"AssetKind": "Build",
@@ -2849,13 +2849,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
"AssetKind": "Build",
@@ -2866,13 +2866,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
"AssetKind": "Build",
@@ -2883,13 +2883,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
"AssetKind": "Build",
@@ -2900,13 +2900,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Build",
@@ -2917,13 +2917,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll",
"AssetKind": "Build",
@@ -2934,13 +2934,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Build",
@@ -2951,13 +2951,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll",
"AssetKind": "Build",
@@ -2968,13 +2968,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Build",
@@ -2985,13 +2985,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll",
"AssetKind": "Build",
@@ -3002,13 +3002,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll",
"AssetKind": "Build",
@@ -3019,13 +3019,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll",
"AssetKind": "Build",
@@ -3036,13 +3036,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll",
"AssetKind": "Build",
@@ -3053,13 +3053,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll",
"AssetKind": "Build",
@@ -3070,13 +3070,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll",
"AssetKind": "Build",
@@ -3087,13 +3087,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll",
"AssetKind": "Build",
@@ -3104,13 +3104,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll",
"AssetKind": "Build",
@@ -3121,13 +3121,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll",
"AssetKind": "Build",
@@ -3138,13 +3138,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll",
"AssetKind": "Build",
@@ -3155,13 +3155,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
"AssetKind": "Build",
@@ -3172,13 +3172,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll",
"AssetKind": "Build",
@@ -3189,13 +3189,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll",
"AssetKind": "Build",
@@ -3206,13 +3206,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll",
"AssetKind": "Build",
@@ -3223,13 +3223,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll",
"AssetKind": "Build",
@@ -3240,13 +3240,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Build",
@@ -3257,13 +3257,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll",
"AssetKind": "Build",
@@ -3274,13 +3274,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\WindowsBase.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Build",
@@ -3294,10 +3294,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -3308,13 +3308,13 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Build",
@@ -3328,10 +3328,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb",
"AssetKind": "Build",
@@ -3345,12 +3345,12 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -3362,10 +3362,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Build",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Build",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Build",
@@ -3413,10 +3413,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Build",
@@ -3430,10 +3430,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Build",
@@ -3447,10 +3447,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Build",
@@ -3464,10 +3464,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll",
"AssetKind": "Build",
@@ -3478,13 +3478,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\mscorlib.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Build",
@@ -3495,3430 +3495,3430 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\netstandard.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Build",
@@ -6932,10 +6932,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Build",
@@ -6949,10 +6949,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -6966,10 +6966,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm.lib.module.js",
"AssetKind": "All",
@@ -6983,10 +6983,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Build",
@@ -7000,10 +7000,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -7017,10 +7017,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\razorclasslibrary.lib.module.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "razorclasslibrary.lib.module.js",
"AssetKind": "All",
@@ -7034,10 +7034,10 @@
"OriginalItemSpec": "wwwroot\\razorclasslibrary.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -7051,10 +7051,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.files.json
index f0de8991e192..ea4d5ff7c41e 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
@@ -201,9 +201,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -229,7 +229,7 @@
"${OutputPath}\\wwwroot\\css\\app.css",
"${OutputPath}\\wwwroot\\index.html",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
- "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
@@ -237,157 +237,157 @@
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
@@ -453,5 +453,234 @@
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\index.html"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
index cda6c84996eb..e633dbe68a2a 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -31,15 +31,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -48,13 +48,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -65,13 +65,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -82,13 +82,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -99,13 +99,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -116,13 +116,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -133,13 +133,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -150,13 +150,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -170,2577 +170,2577 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2754,10 +2754,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2771,10 +2771,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2788,10 +2788,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2805,10 +2805,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2822,10 +2822,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2839,10 +2839,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2856,10 +2856,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2873,10 +2873,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2890,10 +2890,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2907,10 +2907,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -2924,10 +2924,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -2941,10 +2941,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -2958,10 +2958,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -2975,10 +2975,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -2992,10 +2992,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -3009,10 +3009,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -3026,10 +3026,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3043,10 +3043,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3060,10 +3060,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3077,10 +3077,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3094,10 +3094,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3111,10 +3111,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3128,10 +3128,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3145,10 +3145,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3162,10 +3162,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3179,10 +3179,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3196,10 +3196,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3230,10 +3230,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3264,10 +3264,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3400,10 +3400,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3417,10 +3417,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3434,10 +3434,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3451,10 +3451,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3468,10 +3468,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3485,10 +3485,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3502,10 +3502,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3519,10 +3519,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3536,10 +3536,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3553,10 +3553,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3570,10 +3570,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3587,10 +3587,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3604,10 +3604,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3621,10 +3621,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3638,10 +3638,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3655,10 +3655,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3672,10 +3672,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3689,10 +3689,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3706,10 +3706,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3723,10 +3723,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3740,10 +3740,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3757,10 +3757,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3774,10 +3774,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3791,10 +3791,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3808,10 +3808,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Publish",
@@ -3825,10 +3825,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3842,10 +3842,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt",
"AssetKind": "Publish",
@@ -3859,10 +3859,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\publish.extension.txt"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.lib.module.js",
"AssetKind": "All",
@@ -3876,10 +3876,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -3893,10 +3893,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.files.json
index 65d92c2956a3..a11f59783331 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
@@ -198,9 +198,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -226,7 +226,7 @@
"${OutputPath}\\wwwroot\\css\\app.css",
"${OutputPath}\\wwwroot\\index.html",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
- "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
@@ -234,155 +234,155 @@
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
@@ -447,5 +447,231 @@
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\index.html"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json
index 439763a85328..9d52c02b62b4 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_CanHaveDifferentBuildAndPublishModules.Publish.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -31,15 +31,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -48,13 +48,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -65,13 +65,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -82,13 +82,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -99,13 +99,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -116,13 +116,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -133,13 +133,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -150,13 +150,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -170,2543 +170,2543 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2720,10 +2720,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2737,10 +2737,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2754,10 +2754,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2771,10 +2771,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2788,10 +2788,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2805,10 +2805,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2822,10 +2822,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2839,10 +2839,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2856,10 +2856,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2873,10 +2873,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -2890,10 +2890,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -2907,10 +2907,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -2924,10 +2924,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -2941,10 +2941,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -2958,10 +2958,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -2975,10 +2975,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -2992,10 +2992,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3009,10 +3009,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3026,10 +3026,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3043,10 +3043,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3060,10 +3060,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3077,10 +3077,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3094,10 +3094,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3111,10 +3111,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3128,10 +3128,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3145,10 +3145,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3162,10 +3162,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3179,10 +3179,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3196,10 +3196,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3230,10 +3230,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3264,10 +3264,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3400,10 +3400,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3417,10 +3417,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3434,10 +3434,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3451,10 +3451,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3468,10 +3468,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3485,10 +3485,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3502,10 +3502,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3519,10 +3519,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3536,10 +3536,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3553,10 +3553,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3570,10 +3570,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3587,10 +3587,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3604,10 +3604,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3621,10 +3621,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3638,10 +3638,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3655,10 +3655,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3672,10 +3672,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3689,10 +3689,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3706,10 +3706,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3723,10 +3723,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3740,10 +3740,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3757,10 +3757,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3774,10 +3774,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Publish",
@@ -3791,10 +3791,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3808,10 +3808,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.lib.module.js",
"AssetKind": "Publish",
@@ -3825,10 +3825,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -3842,10 +3842,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json
index 405505a994c6..c859b8d3a8ca 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.files.json
@@ -208,9 +208,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -238,5 +238,244 @@
"${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
"${OutputPath}\\wwwroot\\index.html",
"${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js",
- "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json"
-]
+ "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
+ "${OutputPath}\\wwwroot\\Fake-License.txt",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.br",
+ "${OutputPath}\\wwwroot\\_bin\\publish.extension.txt.gz",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorhosted.modules.json",
+ "${OutputPath}\\wwwroot\\blazorwasm.lib.module.js",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
+ "${OutputPath}\\wwwroot\\index.html",
+ "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
index 69c26969ee17..c6fb0a058a03 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/JsModules_Hosted_CanCustomizeBlazorInitialization.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 2,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
+ "Identity": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
"SourceId": "blazorhosted",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\blazorhosted\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/blazorhosted",
"RelativePath": "blazorhosted.modules.json",
"AssetKind": "Publish",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Publish",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "LinkToWebRoot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -95,15 +95,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -112,13 +112,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -129,13 +129,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -146,13 +146,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -163,13 +163,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -180,13 +180,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -197,13 +197,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -214,13 +214,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -234,2628 +234,2628 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_bin/publish.extension.txt.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_bin\\publish.extension.txt.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_bin\\publish.extension.txt.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Publish",
@@ -2869,10 +2869,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2886,10 +2886,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2903,10 +2903,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2920,10 +2920,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2937,10 +2937,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2954,10 +2954,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2971,10 +2971,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2988,10 +2988,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -3005,10 +3005,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -3022,10 +3022,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -3039,10 +3039,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -3056,10 +3056,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -3073,10 +3073,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -3090,10 +3090,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -3107,10 +3107,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -3124,10 +3124,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -3141,10 +3141,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -3158,10 +3158,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3175,10 +3175,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3192,10 +3192,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3209,10 +3209,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3226,10 +3226,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3243,10 +3243,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Publish",
@@ -3260,10 +3260,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3277,10 +3277,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3294,10 +3294,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3311,10 +3311,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3328,10 +3328,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3345,10 +3345,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3362,10 +3362,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3413,10 +3413,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3430,10 +3430,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3447,10 +3447,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3464,10 +3464,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3481,10 +3481,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3498,10 +3498,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3515,10 +3515,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3532,10 +3532,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3549,10 +3549,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3566,10 +3566,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3583,10 +3583,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3600,10 +3600,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3617,10 +3617,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3634,10 +3634,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3651,10 +3651,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3668,10 +3668,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3685,10 +3685,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3702,10 +3702,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3719,10 +3719,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3736,10 +3736,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3753,10 +3753,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3770,10 +3770,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3787,10 +3787,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3804,10 +3804,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3821,10 +3821,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3838,10 +3838,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3855,10 +3855,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3872,10 +3872,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3889,10 +3889,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3906,10 +3906,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3923,10 +3923,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3940,10 +3940,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3957,10 +3957,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Publish",
@@ -3974,10 +3974,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3991,10 +3991,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\publish.extension.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_bin/publish.extension.txt",
"AssetKind": "Publish",
@@ -4008,10 +4008,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\publish.extension.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Publish",
@@ -4025,10 +4025,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -4042,10 +4042,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\blazorwasm.lib.module.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm.lib.module.js",
"AssetKind": "All",
@@ -4059,10 +4059,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -4076,10 +4076,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -4093,10 +4093,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.files.json
index 65d92c2956a3..a11f59783331 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
@@ -198,9 +198,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -226,7 +226,7 @@
"${OutputPath}\\wwwroot\\css\\app.css",
"${OutputPath}\\wwwroot\\index.html",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
- "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
@@ -234,155 +234,155 @@
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
@@ -447,5 +447,231 @@
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\index.html"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json
index 415295ab16b2..b9249032efbc 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJsonManifest.Publish.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -31,15 +31,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -48,13 +48,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -65,13 +65,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -82,13 +82,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -99,13 +99,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -116,13 +116,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -133,13 +133,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -150,13 +150,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -170,2543 +170,2543 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2720,10 +2720,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2737,10 +2737,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2754,10 +2754,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2771,10 +2771,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2788,10 +2788,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2805,10 +2805,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2822,10 +2822,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2839,10 +2839,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2856,10 +2856,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2873,10 +2873,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -2890,10 +2890,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -2907,10 +2907,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -2924,10 +2924,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -2941,10 +2941,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -2958,10 +2958,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -2975,10 +2975,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -2992,10 +2992,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3009,10 +3009,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3026,10 +3026,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3043,10 +3043,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3060,10 +3060,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3077,10 +3077,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3094,10 +3094,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3111,10 +3111,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3128,10 +3128,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3145,10 +3145,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3162,10 +3162,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3179,10 +3179,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3196,10 +3196,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3230,10 +3230,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3264,10 +3264,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3400,10 +3400,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3417,10 +3417,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3434,10 +3434,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3451,10 +3451,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3468,10 +3468,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3485,10 +3485,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3502,10 +3502,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3519,10 +3519,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3536,10 +3536,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3553,10 +3553,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3570,10 +3570,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3587,10 +3587,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3604,10 +3604,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3621,10 +3621,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3638,10 +3638,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3655,10 +3655,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3672,10 +3672,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3689,10 +3689,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3706,10 +3706,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3723,10 +3723,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3740,10 +3740,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3757,10 +3757,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3774,10 +3774,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Publish",
@@ -3791,10 +3791,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3808,10 +3808,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\blazorwasm-minimal.lib.module.js",
+ "Identity": "${ProjectPath}\\wwwroot\\blazorwasm-minimal.lib.module.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.lib.module.js",
"AssetKind": "All",
@@ -3825,10 +3825,10 @@
"OriginalItemSpec": "wwwroot\\blazorwasm-minimal.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -3842,10 +3842,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json
index 518c4514a3f9..76c5067092f4 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.files.json
@@ -104,9 +104,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -144,5 +144,7 @@
"${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js.br",
"${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js.gz",
"${OutputPath}\\wwwroot\\styles.css",
- "${OutputPath}\\wwwroot\\wwwroot\\exampleJsInterop.js"
+ "${OutputPath}\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js"
]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json
index bfd19c53aff5..1bae9c2d8b69 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BackCompatibilityPublish_Hosted_Works.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 1,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 1,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
@@ -78,7 +78,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.files.json
index d038b5d18e69..a54c7624b9bc 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,4 +1,405 @@
[
+ "${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.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.Runtime.InteropServices.JavaScript.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.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.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",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
@@ -380,8 +781,10 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
@@ -397,206 +800,5 @@
"${OutputPath}\\wwwroot\\_framework\\mscorlib.dll",
"${OutputPath}\\wwwroot\\_framework\\mscorlib.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
- "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
-]
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json
index 7546d0fc75bb..b219bffbd1d7 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_BuildMinimal_Works.Build.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Build",
@@ -31,13 +31,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Build",
@@ -48,13 +48,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Build",
@@ -65,13 +65,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Build",
@@ -82,13 +82,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Build",
@@ -99,13 +99,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Build",
@@ -116,13 +116,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll",
"AssetKind": "Build",
@@ -133,13 +133,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Build",
@@ -150,13 +150,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Build",
@@ -167,13 +167,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Build",
@@ -184,13 +184,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Build",
@@ -201,13 +201,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Build",
@@ -218,13 +218,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Build",
@@ -235,13 +235,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Build",
@@ -252,13 +252,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Build",
@@ -269,13 +269,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Build",
@@ -286,13 +286,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Build",
@@ -303,13 +303,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Build",
@@ -320,13 +320,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Build",
@@ -337,13 +337,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Build",
@@ -354,13 +354,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Build",
@@ -371,13 +371,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Build",
@@ -388,13 +388,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Build",
@@ -405,13 +405,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
"AssetKind": "Build",
@@ -422,13 +422,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll",
"AssetKind": "Build",
@@ -439,13 +439,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
"AssetKind": "Build",
@@ -456,13 +456,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll",
"AssetKind": "Build",
@@ -473,13 +473,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll",
"AssetKind": "Build",
@@ -490,13 +490,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.AppContext.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Build",
@@ -507,13 +507,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Buffers.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Build",
@@ -524,13 +524,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll",
"AssetKind": "Build",
@@ -541,13 +541,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Build",
@@ -558,13 +558,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Build",
@@ -575,13 +575,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Build",
@@ -592,13 +592,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Build",
@@ -609,13 +609,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
"AssetKind": "Build",
@@ -626,13 +626,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
"AssetKind": "Build",
@@ -643,13 +643,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Build",
@@ -660,13 +660,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Build",
@@ -677,13 +677,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Build",
@@ -694,13 +694,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll",
"AssetKind": "Build",
@@ -711,13 +711,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Build",
@@ -728,13 +728,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Console.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll",
"AssetKind": "Build",
@@ -745,13 +745,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll",
"AssetKind": "Build",
@@ -762,13 +762,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.Common.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll",
"AssetKind": "Build",
@@ -779,13 +779,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll",
"AssetKind": "Build",
@@ -796,13 +796,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll",
"AssetKind": "Build",
@@ -813,13 +813,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Build",
@@ -830,13 +830,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Build",
@@ -847,13 +847,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
"AssetKind": "Build",
@@ -864,13 +864,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll",
"AssetKind": "Build",
@@ -881,13 +881,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
"AssetKind": "Build",
@@ -898,13 +898,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
"AssetKind": "Build",
@@ -915,13 +915,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll",
"AssetKind": "Build",
@@ -932,13 +932,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
"AssetKind": "Build",
@@ -949,13 +949,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Build",
@@ -966,13 +966,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll",
"AssetKind": "Build",
@@ -983,13 +983,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll",
"AssetKind": "Build",
@@ -1000,13 +1000,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll",
"AssetKind": "Build",
@@ -1017,13 +1017,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll",
"AssetKind": "Build",
@@ -1034,13 +1034,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll",
"AssetKind": "Build",
@@ -1051,13 +1051,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll",
"AssetKind": "Build",
@@ -1068,13 +1068,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll",
"AssetKind": "Build",
@@ -1085,13 +1085,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll",
"AssetKind": "Build",
@@ -1102,13 +1102,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
"AssetKind": "Build",
@@ -1119,13 +1119,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
"AssetKind": "Build",
@@ -1136,13 +1136,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll",
"AssetKind": "Build",
@@ -1153,13 +1153,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
"AssetKind": "Build",
@@ -1170,13 +1170,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
"AssetKind": "Build",
@@ -1187,13 +1187,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
"AssetKind": "Build",
@@ -1204,13 +1204,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Build",
@@ -1221,13 +1221,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll",
"AssetKind": "Build",
@@ -1238,13 +1238,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll",
"AssetKind": "Build",
@@ -1255,13 +1255,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
"AssetKind": "Build",
@@ -1272,13 +1272,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Build",
@@ -1289,13 +1289,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
"AssetKind": "Build",
@@ -1306,13 +1306,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll",
"AssetKind": "Build",
@@ -1323,13 +1323,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
"AssetKind": "Build",
@@ -1340,13 +1340,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll",
"AssetKind": "Build",
@@ -1357,13 +1357,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Build",
@@ -1374,13 +1374,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll",
"AssetKind": "Build",
@@ -1391,13 +1391,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll",
"AssetKind": "Build",
@@ -1408,13 +1408,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Build",
@@ -1425,13 +1425,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Build",
@@ -1442,13 +1442,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Memory.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll",
"AssetKind": "Build",
@@ -1459,13 +1459,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Build",
@@ -1476,13 +1476,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll",
"AssetKind": "Build",
@@ -1493,13 +1493,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll",
"AssetKind": "Build",
@@ -1510,13 +1510,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll",
"AssetKind": "Build",
@@ -1527,13 +1527,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll",
"AssetKind": "Build",
@@ -1544,13 +1544,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll",
"AssetKind": "Build",
@@ -1561,13 +1561,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll",
"AssetKind": "Build",
@@ -1578,13 +1578,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll",
"AssetKind": "Build",
@@ -1595,13 +1595,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll",
"AssetKind": "Build",
@@ -1612,13 +1612,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll",
"AssetKind": "Build",
@@ -1629,13 +1629,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll",
"AssetKind": "Build",
@@ -1646,13 +1646,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll",
"AssetKind": "Build",
@@ -1663,13 +1663,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll",
"AssetKind": "Build",
@@ -1680,13 +1680,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
"AssetKind": "Build",
@@ -1697,13 +1697,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll",
"AssetKind": "Build",
@@ -1714,13 +1714,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll",
"AssetKind": "Build",
@@ -1731,13 +1731,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll",
"AssetKind": "Build",
@@ -1748,13 +1748,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll",
"AssetKind": "Build",
@@ -1765,13 +1765,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll",
"AssetKind": "Build",
@@ -1782,13 +1782,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll",
"AssetKind": "Build",
@@ -1799,13 +1799,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Build",
@@ -1816,13 +1816,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Build",
@@ -1836,10 +1836,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll",
"AssetKind": "Build",
@@ -1850,13 +1850,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Build",
@@ -1867,13 +1867,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Build",
@@ -1884,13 +1884,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll",
"AssetKind": "Build",
@@ -1901,13 +1901,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll",
"AssetKind": "Build",
@@ -1918,13 +1918,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
"AssetKind": "Build",
@@ -1935,13 +1935,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Build",
@@ -1952,13 +1952,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Build",
@@ -1969,13 +1969,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll",
"AssetKind": "Build",
@@ -1986,13 +1986,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll",
"AssetKind": "Build",
@@ -2003,13 +2003,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll",
"AssetKind": "Build",
@@ -2020,13 +2020,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Build",
@@ -2037,13 +2037,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
"AssetKind": "Build",
@@ -2054,13 +2054,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll",
"AssetKind": "Build",
@@ -2071,13 +2071,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll",
"AssetKind": "Build",
@@ -2088,13 +2088,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Build",
@@ -2105,13 +2105,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll",
"AssetKind": "Build",
@@ -2122,13 +2122,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Build",
@@ -2139,13 +2139,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
"AssetKind": "Build",
@@ -2156,13 +2156,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Build",
@@ -2173,13 +2173,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll",
"AssetKind": "Build",
@@ -2190,13 +2190,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Build",
@@ -2207,13 +2207,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll",
"AssetKind": "Build",
@@ -2224,13 +2224,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll",
"AssetKind": "Build",
@@ -2241,13 +2241,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Build",
@@ -2258,13 +2258,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll",
"AssetKind": "Build",
@@ -2275,13 +2275,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
"AssetKind": "Build",
@@ -2292,13 +2292,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
"AssetKind": "Build",
@@ -2309,13 +2309,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
"AssetKind": "Build",
@@ -2326,13 +2326,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
"AssetKind": "Build",
@@ -2343,13 +2343,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll",
"AssetKind": "Build",
@@ -2360,13 +2360,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Build",
@@ -2377,13 +2377,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll",
"AssetKind": "Build",
@@ -2394,13 +2394,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Build",
@@ -2411,13 +2411,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Build",
@@ -2428,13 +2428,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
"AssetKind": "Build",
@@ -2445,13 +2445,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
"AssetKind": "Build",
@@ -2462,13 +2462,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
"AssetKind": "Build",
@@ -2479,13 +2479,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
"AssetKind": "Build",
@@ -2496,13 +2496,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Build",
@@ -2513,13 +2513,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
"AssetKind": "Build",
@@ -2530,13 +2530,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll",
"AssetKind": "Build",
@@ -2547,13 +2547,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll",
"AssetKind": "Build",
@@ -2564,13 +2564,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll",
"AssetKind": "Build",
@@ -2581,13 +2581,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll",
"AssetKind": "Build",
@@ -2598,13 +2598,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll",
"AssetKind": "Build",
@@ -2615,13 +2615,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll",
"AssetKind": "Build",
@@ -2632,13 +2632,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
"AssetKind": "Build",
@@ -2649,13 +2649,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
"AssetKind": "Build",
@@ -2666,13 +2666,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll",
"AssetKind": "Build",
@@ -2683,13 +2683,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Build",
@@ -2700,13 +2700,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Build",
@@ -2717,13 +2717,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll",
"AssetKind": "Build",
@@ -2734,13 +2734,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll",
"AssetKind": "Build",
@@ -2751,13 +2751,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll",
"AssetKind": "Build",
@@ -2768,13 +2768,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
"AssetKind": "Build",
@@ -2785,13 +2785,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
"AssetKind": "Build",
@@ -2802,13 +2802,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
"AssetKind": "Build",
@@ -2819,13 +2819,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Build",
@@ -2836,13 +2836,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll",
"AssetKind": "Build",
@@ -2853,13 +2853,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Build",
@@ -2870,13 +2870,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll",
"AssetKind": "Build",
@@ -2887,13 +2887,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Build",
@@ -2904,13 +2904,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll",
"AssetKind": "Build",
@@ -2921,13 +2921,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll",
"AssetKind": "Build",
@@ -2938,13 +2938,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll",
"AssetKind": "Build",
@@ -2955,13 +2955,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll",
"AssetKind": "Build",
@@ -2972,13 +2972,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll",
"AssetKind": "Build",
@@ -2989,13 +2989,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll",
"AssetKind": "Build",
@@ -3006,13 +3006,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll",
"AssetKind": "Build",
@@ -3023,13 +3023,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll",
"AssetKind": "Build",
@@ -3040,13 +3040,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll",
"AssetKind": "Build",
@@ -3057,13 +3057,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll",
"AssetKind": "Build",
@@ -3074,13 +3074,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
"AssetKind": "Build",
@@ -3091,13 +3091,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll",
"AssetKind": "Build",
@@ -3108,13 +3108,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll",
"AssetKind": "Build",
@@ -3125,13 +3125,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll",
"AssetKind": "Build",
@@ -3142,13 +3142,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll",
"AssetKind": "Build",
@@ -3159,13 +3159,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Build",
@@ -3176,13 +3176,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll",
"AssetKind": "Build",
@@ -3193,13 +3193,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\WindowsBase.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Build",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -3227,13 +3227,13 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Build",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb",
"AssetKind": "Build",
@@ -3264,12 +3264,12 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm-minimal.pdb"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Build",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Build",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Build",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Build",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Build",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Build",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll",
"AssetKind": "Build",
@@ -3397,13 +3397,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\mscorlib.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Build",
@@ -3414,3396 +3414,3396 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\netstandard.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.styles.css",
"AssetKind": "All",
@@ -6814,13 +6814,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.bundle.scp.css",
"AssetKind": "All",
@@ -6831,13 +6831,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\appsettings.development.json",
+ "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "appsettings.development.json",
"AssetKind": "All",
@@ -6851,10 +6851,10 @@
"OriginalItemSpec": "wwwroot\\appsettings.development.json"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -6868,10 +6868,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json
index 1908035506da..d8fe99491b06 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.files.json
@@ -384,8 +384,8 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
@@ -403,6 +403,5 @@
"${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
"${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
"${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
- "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js",
- "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\serviceworkers\\my-service-worker.js"
-]
+ "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json
index 89cf4b712a19..ffe076b0dcb4 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Build_Hosted_Works.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 2,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Build",
@@ -61,13 +61,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Build",
@@ -78,13 +78,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Build",
@@ -95,13 +95,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Build",
@@ -112,13 +112,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Build",
@@ -129,13 +129,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Build",
@@ -146,13 +146,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll",
"AssetKind": "Build",
@@ -163,13 +163,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.CSharp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Build",
@@ -180,13 +180,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Build",
@@ -197,13 +197,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Build",
@@ -214,13 +214,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Build",
@@ -231,13 +231,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Build",
@@ -248,13 +248,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Build",
@@ -265,13 +265,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Build",
@@ -282,13 +282,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Build",
@@ -299,13 +299,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Build",
@@ -316,13 +316,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Build",
@@ -333,13 +333,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Build",
@@ -350,13 +350,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Build",
@@ -367,13 +367,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Build",
@@ -384,13 +384,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Build",
@@ -401,13 +401,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Build",
@@ -418,13 +418,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Build",
@@ -435,13 +435,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\${PackageVersion}\\lib\\${PackageTfm}\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
"AssetKind": "Build",
@@ -452,13 +452,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll",
"AssetKind": "Build",
@@ -469,13 +469,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.VisualBasic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
"AssetKind": "Build",
@@ -486,13 +486,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll",
"AssetKind": "Build",
@@ -503,13 +503,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\Microsoft.Win32.Registry.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Build",
@@ -520,13 +520,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb",
"AssetKind": "Build",
@@ -537,13 +537,13 @@
"AssetTraitValue": "symbol",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\razorclasslibrary\\bin\\Debug\\${Tfm}\\RazorClassLibrary.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll",
"AssetKind": "Build",
@@ -554,13 +554,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.AppContext.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.AppContext.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Build",
@@ -571,13 +571,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Buffers.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Build",
@@ -588,13 +588,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll",
"AssetKind": "Build",
@@ -605,13 +605,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Immutable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Build",
@@ -622,13 +622,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Build",
@@ -639,13 +639,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Build",
@@ -656,13 +656,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Collections.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Build",
@@ -673,13 +673,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
"AssetKind": "Build",
@@ -690,13 +690,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.DataAnnotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
"AssetKind": "Build",
@@ -707,13 +707,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.EventBasedAsync.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Build",
@@ -724,13 +724,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Build",
@@ -741,13 +741,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Build",
@@ -758,13 +758,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll",
"AssetKind": "Build",
@@ -775,13 +775,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Configuration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Build",
@@ -792,13 +792,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Console.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll",
"AssetKind": "Build",
@@ -809,13 +809,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Core.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Core.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll",
"AssetKind": "Build",
@@ -826,13 +826,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.Common.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.Common.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll",
"AssetKind": "Build",
@@ -843,13 +843,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.DataSetExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll",
"AssetKind": "Build",
@@ -860,13 +860,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Data.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Data.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll",
"AssetKind": "Build",
@@ -877,13 +877,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Contracts.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Build",
@@ -894,13 +894,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Build",
@@ -911,13 +911,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
"AssetKind": "Build",
@@ -928,13 +928,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.FileVersionInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll",
"AssetKind": "Build",
@@ -945,13 +945,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Process.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
"AssetKind": "Build",
@@ -962,13 +962,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.StackTrace.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
"AssetKind": "Build",
@@ -979,13 +979,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TextWriterTraceListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll",
"AssetKind": "Build",
@@ -996,13 +996,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tools.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
"AssetKind": "Build",
@@ -1013,13 +1013,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.TraceSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Build",
@@ -1030,13 +1030,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll",
"AssetKind": "Build",
@@ -1047,13 +1047,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll",
"AssetKind": "Build",
@@ -1064,13 +1064,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Drawing.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Drawing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll",
"AssetKind": "Build",
@@ -1081,13 +1081,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Dynamic.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll",
"AssetKind": "Build",
@@ -1098,13 +1098,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Formats.Asn1.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll",
"AssetKind": "Build",
@@ -1115,13 +1115,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Calendars.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll",
"AssetKind": "Build",
@@ -1132,13 +1132,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll",
"AssetKind": "Build",
@@ -1149,13 +1149,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Globalization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Globalization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll",
"AssetKind": "Build",
@@ -1166,13 +1166,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.Brotli.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
"AssetKind": "Build",
@@ -1183,13 +1183,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
"AssetKind": "Build",
@@ -1200,13 +1200,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.ZipFile.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll",
"AssetKind": "Build",
@@ -1217,13 +1217,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Compression.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
"AssetKind": "Build",
@@ -1234,13 +1234,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
"AssetKind": "Build",
@@ -1251,13 +1251,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.DriveInfo.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
"AssetKind": "Build",
@@ -1268,13 +1268,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Build",
@@ -1285,13 +1285,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll",
"AssetKind": "Build",
@@ -1302,13 +1302,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.FileSystem.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll",
"AssetKind": "Build",
@@ -1319,13 +1319,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.IsolatedStorage.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
"AssetKind": "Build",
@@ -1336,13 +1336,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.MemoryMappedFiles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Build",
@@ -1353,13 +1353,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\${PackageVersion}\\lib\\${PackageTfm}\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
"AssetKind": "Build",
@@ -1370,13 +1370,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll",
"AssetKind": "Build",
@@ -1387,13 +1387,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.Pipes.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
"AssetKind": "Build",
@@ -1404,13 +1404,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.UnmanagedMemoryStream.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll",
"AssetKind": "Build",
@@ -1421,13 +1421,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.IO.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.IO.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Build",
@@ -1438,13 +1438,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll",
"AssetKind": "Build",
@@ -1455,13 +1455,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll",
"AssetKind": "Build",
@@ -1472,13 +1472,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.Queryable.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Build",
@@ -1489,13 +1489,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Build",
@@ -1506,13 +1506,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Memory.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll",
"AssetKind": "Build",
@@ -1523,13 +1523,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Build",
@@ -1540,13 +1540,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Http.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll",
"AssetKind": "Build",
@@ -1557,13 +1557,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.HttpListener.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll",
"AssetKind": "Build",
@@ -1574,13 +1574,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Mail.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll",
"AssetKind": "Build",
@@ -1591,13 +1591,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NameResolution.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll",
"AssetKind": "Build",
@@ -1608,13 +1608,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.NetworkInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll",
"AssetKind": "Build",
@@ -1625,13 +1625,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Ping.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll",
"AssetKind": "Build",
@@ -1642,13 +1642,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll",
"AssetKind": "Build",
@@ -1659,13 +1659,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Quic.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll",
"AssetKind": "Build",
@@ -1676,13 +1676,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Requests.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll",
"AssetKind": "Build",
@@ -1693,13 +1693,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll",
"AssetKind": "Build",
@@ -1710,13 +1710,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.ServicePoint.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll",
"AssetKind": "Build",
@@ -1727,13 +1727,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.Sockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll",
"AssetKind": "Build",
@@ -1744,13 +1744,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebClient.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
"AssetKind": "Build",
@@ -1761,13 +1761,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebHeaderCollection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll",
"AssetKind": "Build",
@@ -1778,13 +1778,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll",
"AssetKind": "Build",
@@ -1795,13 +1795,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.Client.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll",
"AssetKind": "Build",
@@ -1812,13 +1812,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.WebSockets.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll",
"AssetKind": "Build",
@@ -1829,13 +1829,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Net.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Net.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll",
"AssetKind": "Build",
@@ -1846,13 +1846,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.Vectors.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll",
"AssetKind": "Build",
@@ -1863,13 +1863,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Build",
@@ -1880,13 +1880,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Build",
@@ -1900,10 +1900,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll",
"AssetKind": "Build",
@@ -1914,13 +1914,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.DataContractSerialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Build",
@@ -1931,13 +1931,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Build",
@@ -1948,13 +1948,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll",
"AssetKind": "Build",
@@ -1965,13 +1965,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll",
"AssetKind": "Build",
@@ -1982,13 +1982,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Private.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
"AssetKind": "Build",
@@ -1999,13 +1999,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.DispatchProxy.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Build",
@@ -2016,13 +2016,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Build",
@@ -2033,13 +2033,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll",
"AssetKind": "Build",
@@ -2050,13 +2050,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Emit.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll",
"AssetKind": "Build",
@@ -2067,13 +2067,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll",
"AssetKind": "Build",
@@ -2084,13 +2084,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Build",
@@ -2101,13 +2101,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
"AssetKind": "Build",
@@ -2118,13 +2118,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.TypeExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll",
"AssetKind": "Build",
@@ -2135,13 +2135,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Reflection.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Reflection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll",
"AssetKind": "Build",
@@ -2152,13 +2152,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Reader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Build",
@@ -2169,13 +2169,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll",
"AssetKind": "Build",
@@ -2186,13 +2186,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Resources.Writer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Build",
@@ -2203,13 +2203,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
"AssetKind": "Build",
@@ -2220,13 +2220,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.CompilerServices.VisualC.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Build",
@@ -2237,13 +2237,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll",
"AssetKind": "Build",
@@ -2254,13 +2254,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Handles.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Build",
@@ -2271,13 +2271,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll",
"AssetKind": "Build",
@@ -2288,13 +2288,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.InteropServices.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll",
"AssetKind": "Build",
@@ -2305,13 +2305,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Intrinsics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Build",
@@ -2322,13 +2322,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll",
"AssetKind": "Build",
@@ -2339,13 +2339,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Numerics.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
"AssetKind": "Build",
@@ -2356,13 +2356,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Formatters.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
"AssetKind": "Build",
@@ -2373,13 +2373,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
"AssetKind": "Build",
@@ -2390,13 +2390,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
"AssetKind": "Build",
@@ -2407,13 +2407,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll",
"AssetKind": "Build",
@@ -2424,13 +2424,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Build",
@@ -2441,13 +2441,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Runtime.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll",
"AssetKind": "Build",
@@ -2458,13 +2458,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.AccessControl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Build",
@@ -2475,13 +2475,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Build",
@@ -2492,13 +2492,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
"AssetKind": "Build",
@@ -2509,13 +2509,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Cng.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
"AssetKind": "Build",
@@ -2526,13 +2526,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Csp.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
"AssetKind": "Build",
@@ -2543,13 +2543,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
"AssetKind": "Build",
@@ -2560,13 +2560,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.OpenSsl.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Build",
@@ -2577,13 +2577,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
"AssetKind": "Build",
@@ -2594,13 +2594,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Cryptography.X509Certificates.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll",
"AssetKind": "Build",
@@ -2611,13 +2611,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll",
"AssetKind": "Build",
@@ -2628,13 +2628,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.Principal.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll",
"AssetKind": "Build",
@@ -2645,13 +2645,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.SecureString.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll",
"AssetKind": "Build",
@@ -2662,13 +2662,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Security.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Security.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll",
"AssetKind": "Build",
@@ -2679,13 +2679,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceModel.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll",
"AssetKind": "Build",
@@ -2696,13 +2696,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ServiceProcess.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
"AssetKind": "Build",
@@ -2713,13 +2713,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.CodePages.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
"AssetKind": "Build",
@@ -2730,13 +2730,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll",
"AssetKind": "Build",
@@ -2747,13 +2747,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encoding.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Build",
@@ -2764,13 +2764,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Build",
@@ -2781,13 +2781,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.Json.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll",
"AssetKind": "Build",
@@ -2798,13 +2798,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Text.RegularExpressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll",
"AssetKind": "Build",
@@ -2815,13 +2815,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Channels.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll",
"AssetKind": "Build",
@@ -2832,13 +2832,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Overlapped.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
"AssetKind": "Build",
@@ -2849,13 +2849,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Dataflow.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
"AssetKind": "Build",
@@ -2866,13 +2866,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
"AssetKind": "Build",
@@ -2883,13 +2883,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.Parallel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Build",
@@ -2900,13 +2900,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll",
"AssetKind": "Build",
@@ -2917,13 +2917,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Thread.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Build",
@@ -2934,13 +2934,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll",
"AssetKind": "Build",
@@ -2951,13 +2951,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.Timer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Build",
@@ -2968,13 +2968,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Threading.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll",
"AssetKind": "Build",
@@ -2985,13 +2985,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.Local.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll",
"AssetKind": "Build",
@@ -3002,13 +3002,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Transactions.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Transactions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll",
"AssetKind": "Build",
@@ -3019,13 +3019,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.ValueTuple.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll",
"AssetKind": "Build",
@@ -3036,13 +3036,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.HttpUtility.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll",
"AssetKind": "Build",
@@ -3053,13 +3053,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Web.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll",
"AssetKind": "Build",
@@ -3070,13 +3070,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Windows.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Windows.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll",
"AssetKind": "Build",
@@ -3087,13 +3087,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll",
"AssetKind": "Build",
@@ -3104,13 +3104,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.ReaderWriter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll",
"AssetKind": "Build",
@@ -3121,13 +3121,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.Serialization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll",
"AssetKind": "Build",
@@ -3138,13 +3138,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
"AssetKind": "Build",
@@ -3155,13 +3155,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.XDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll",
"AssetKind": "Build",
@@ -3172,13 +3172,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XPath.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll",
"AssetKind": "Build",
@@ -3189,13 +3189,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlDocument.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll",
"AssetKind": "Build",
@@ -3206,13 +3206,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.XmlSerializer.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll",
"AssetKind": "Build",
@@ -3223,13 +3223,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.Xml.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.Xml.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Build",
@@ -3240,13 +3240,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\System.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll",
"AssetKind": "Build",
@@ -3257,13 +3257,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\WindowsBase.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\WindowsBase.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Build",
@@ -3277,10 +3277,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -3291,13 +3291,13 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Build",
@@ -3311,10 +3311,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb",
"AssetKind": "Build",
@@ -3328,12 +3328,12 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazorwasm.pdb"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -3345,10 +3345,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Build",
@@ -3362,10 +3362,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Build",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Build",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Build",
@@ -3413,10 +3413,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Build",
@@ -3430,10 +3430,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Build",
@@ -3447,10 +3447,10 @@
"OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll",
"AssetKind": "Build",
@@ -3461,13 +3461,13 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\mscorlib.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\mscorlib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Build",
@@ -3478,3430 +3478,3430 @@
"AssetTraitValue": "runtime",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\net6.0\\netstandard.dll"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.mono.browser-wasm\\${RuntimeVersion}\\runtimes\\browser-wasm\\lib\\${PackageTfm}\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.CSharp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.CSharp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.CSharp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.CSharp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.VisualBasic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.VisualBasic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\Microsoft.Win32.Registry.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Win32.Registry.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Win32.Registry.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.AppContext.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.AppContext.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.AppContext.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.AppContext.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Immutable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Immutable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Immutable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Immutable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.DataAnnotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.DataAnnotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.DataAnnotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.EventBasedAsync.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.EventBasedAsync.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Configuration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Core.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Core.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Core.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Core.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Core.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.Common.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.Common.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.Common.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.Common.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.DataSetExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.DataSetExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.DataSetExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Data.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Data.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Data.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Data.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Data.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Contracts.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Contracts.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Contracts.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.FileVersionInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.FileVersionInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Process.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Process.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Process.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.StackTrace.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.StackTrace.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.StackTrace.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TextWriterTraceListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TextWriterTraceListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tools.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tools.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tools.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.TraceSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.TraceSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.TraceSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Drawing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Drawing.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Drawing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Drawing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Dynamic.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Dynamic.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Dynamic.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Formats.Asn1.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Formats.Asn1.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Formats.Asn1.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Formats.Asn1.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Calendars.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Calendars.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Calendars.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Globalization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Globalization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Globalization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Globalization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.Brotli.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.Brotli.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.Brotli.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.ZipFile.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.ZipFile.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.ZipFile.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Compression.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Compression.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Compression.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Compression.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.DriveInfo.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.DriveInfo.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.FileSystem.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.FileSystem.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.FileSystem.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.IsolatedStorage.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.IsolatedStorage.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.IsolatedStorage.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.MemoryMappedFiles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.MemoryMappedFiles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.MemoryMappedFiles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.Pipes.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipes.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.Pipes.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.Pipes.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.UnmanagedMemoryStream.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.UnmanagedMemoryStream.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.IO.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.IO.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.IO.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.IO.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.Queryable.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Queryable.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.Queryable.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.Queryable.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.HttpListener.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.HttpListener.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.HttpListener.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.HttpListener.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Mail.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Mail.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Mail.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Mail.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NameResolution.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NameResolution.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NameResolution.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NameResolution.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.NetworkInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.NetworkInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.NetworkInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Ping.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Ping.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Ping.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Ping.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Quic.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Quic.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Quic.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Quic.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Quic.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Requests.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Requests.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Requests.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Requests.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.ServicePoint.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.ServicePoint.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.ServicePoint.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.Sockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Sockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.Sockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.Sockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebClient.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebClient.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebClient.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebClient.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebHeaderCollection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebHeaderCollection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebHeaderCollection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.Client.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.Client.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.Client.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.WebSockets.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.WebSockets.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.WebSockets.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.WebSockets.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Net.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Net.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Net.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Net.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.Vectors.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.Vectors.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.Vectors.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.DataContractSerialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.DataContractSerialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.DataContractSerialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Private.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Private.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Private.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.DispatchProxy.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.DispatchProxy.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.DispatchProxy.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Emit.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Emit.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Emit.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.TypeExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.TypeExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.TypeExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Reflection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Reflection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Reflection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Reader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Reader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Reader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Reader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Resources.Writer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.Writer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Resources.Writer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Resources.Writer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.CompilerServices.VisualC.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.CompilerServices.VisualC.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Handles.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Handles.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Handles.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Handles.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.InteropServices.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.InteropServices.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.InteropServices.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Intrinsics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Intrinsics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Intrinsics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Numerics.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Numerics.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Numerics.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Formatters.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Formatters.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Formatters.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.AccessControl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.AccessControl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.AccessControl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.AccessControl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Cng.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Cng.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Cng.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Csp.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Csp.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Csp.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.OpenSsl.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.OpenSsl.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Cryptography.X509Certificates.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Cryptography.X509Certificates.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.Principal.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Principal.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.Principal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.Principal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.SecureString.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.SecureString.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.SecureString.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.SecureString.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Security.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Security.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Security.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Security.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceModel.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceModel.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceModel.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ServiceProcess.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ServiceProcess.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ServiceProcess.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ServiceProcess.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.CodePages.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.CodePages.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.CodePages.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encoding.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encoding.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encoding.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encoding.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Text.RegularExpressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Text.RegularExpressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Text.RegularExpressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Channels.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Channels.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Channels.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Channels.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Overlapped.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Overlapped.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Overlapped.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Dataflow.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Dataflow.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Dataflow.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.Parallel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.Parallel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.Parallel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Thread.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Thread.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Thread.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Thread.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.Timer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Timer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.Timer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.Timer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.Local.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.Local.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.Local.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.Local.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Transactions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Transactions.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Transactions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Transactions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.ValueTuple.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ValueTuple.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.ValueTuple.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.ValueTuple.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.HttpUtility.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.HttpUtility.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.HttpUtility.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Web.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Windows.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Windows.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Windows.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Windows.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Windows.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Linq.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.ReaderWriter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.ReaderWriter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.ReaderWriter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.Serialization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.Serialization.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.Serialization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.Serialization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.XDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.XDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.XDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XPath.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XPath.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XPath.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XPath.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlDocument.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlDocument.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlDocument.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.XmlSerializer.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.XmlSerializer.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.XmlSerializer.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.Xml.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.Xml.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Xml.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.Xml.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.Xml.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\WindowsBase.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/WindowsBase.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\WindowsBase.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\WindowsBase.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/mscorlib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\mscorlib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/mscorlib.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\mscorlib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\mscorlib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Build",
@@ -6915,10 +6915,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js.build"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Build",
@@ -6932,10 +6932,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -6949,10 +6949,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Build",
@@ -6966,10 +6966,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -6983,10 +6983,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -7000,10 +7000,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.files.json
deleted file mode 100644
index 0637a088a01e..000000000000
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.files.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json
deleted file mode 100644
index f4d286844380..000000000000
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_HostedApp_ReferencingNetStandardLibrary_Works.Build.staticwebassets.json
+++ /dev/null
@@ -1,6918 +0,0 @@
-{
- "Version": 1,
- "Hash": "__hash__",
- "Source": "blazorhosted",
- "BasePath": "_content/blazorhosted",
- "Mode": "Default",
- "ManifestType": "Build",
- "ReferencedProjectsConfiguration": [
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
- "Version": 1,
- "Source": "blazorwasm",
- "GetPublishAssetsTargets": "",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework",
- "GetBuildAssetsTargets": "GetCurrentProjectStaticWebAssetsV2",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
- },
- {
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
- "Version": 1,
- "Source": "RazorClassLibrary",
- "GetPublishAssetsTargets": "",
- "AdditionalPublishProperties": "",
- "AdditionalPublishPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier",
- "GetBuildAssetsTargets": "GetCurrentProjectStaticWebAssetsV2",
- "AdditionalBuildProperties": "",
- "AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
- }
- ],
- "DiscoveryPatterns": [
- {
- "Name": "RazorClassLibrary\\wwwroot",
- "Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
- "BasePath": "_content/RazorClassLibrary",
- "Pattern": "**"
- },
- {
- "Name": "blazorwasm\\wwwroot",
- "Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
- "BasePath": "/",
- "Pattern": "**"
- }
- ],
- "Assets": [
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazor.boot.json",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/blazor.boot.json",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "obj\\Debug\\net5\\blazor.boot.json"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazorwasm.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/blazorwasm.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "obj\\Debug\\net5\\blazorwasm.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\blazorwasm.pdb",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/blazorwasm.pdb",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "obj\\Debug\\net5\\blazorwasm.pdb"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.CSharp.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.CSharp.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.VisualBasic.Core.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.VisualBasic.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.VisualBasic.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Win32.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Win32.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/Microsoft.Win32.Registry.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Win32.Registry.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/RazorClassLibrary.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/RazorClassLibrary.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.AppContext.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.AppContext.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Buffers.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Buffers.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Immutable.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Immutable.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Specialized.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Collections.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.DataAnnotations.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.EventBasedAsync.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ComponentModel.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Configuration.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Configuration.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Console.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Console.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Core.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Core.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.Common.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.Common.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.DataSetExtensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.DataSetExtensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Data.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Contracts.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Contracts.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.FileVersionInfo.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Process.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Process.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.StackTrace.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.StackTrace.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.TextWriterTraceListener.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Tools.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Tools.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.TraceSource.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.TraceSource.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Drawing.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Drawing.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Drawing.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Drawing.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Dynamic.Runtime.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Dynamic.Runtime.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Formats.Asn1.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Formats.Asn1.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.Calendars.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.Calendars.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.Extensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.Extensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Globalization.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.Brotli.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.Brotli.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.FileSystem.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.FileSystem.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.ZipFile.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.ZipFile.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Compression.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.AccessControl.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.DriveInfo.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.FileSystem.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.IsolatedStorage.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.IsolatedStorage.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.MemoryMappedFiles.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipelines.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipes.AccessControl.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.Pipes.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipes.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.UnmanagedMemoryStream.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.IO.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Expressions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Parallel.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Parallel.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.Queryable.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Queryable.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Linq.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Memory.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Memory.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Http.Json.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Http.Json.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Http.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Http.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.HttpListener.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.HttpListener.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Mail.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Mail.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.NameResolution.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.NameResolution.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.NetworkInformation.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.NetworkInformation.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Ping.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Ping.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Requests.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Requests.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Security.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Security.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.ServicePoint.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.ServicePoint.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.Sockets.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Sockets.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebClient.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebClient.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebHeaderCollection.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebHeaderCollection.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebProxy.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebProxy.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebSockets.Client.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebSockets.Client.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.WebSockets.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebSockets.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Net.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Numerics.Vectors.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Numerics.Vectors.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Numerics.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Numerics.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ObjectModel.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ObjectModel.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.CoreLib.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.DataContractSerialization.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.DataContractSerialization.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Uri.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Uri.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Xml.Linq.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Xml.Linq.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Private.Xml.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Xml.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.DispatchProxy.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.DispatchProxy.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Emit.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Extensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Extensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Metadata.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Metadata.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.TypeExtensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.TypeExtensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Reflection.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.Reader.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.Reader.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Resources.Writer.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.Writer.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.CompilerServices.VisualC.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Handles.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Handles.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.InteropServices.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.InteropServices.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Intrinsics.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Intrinsics.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Loader.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Numerics.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Numerics.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Formatters.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Json.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Json.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.Xml.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.Serialization.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Runtime.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.AccessControl.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.AccessControl.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Claims.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Claims.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Cng.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Cng.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Csp.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Csp.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Encoding.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.OpenSsl.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Cryptography.X509Certificates.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Principal.Windows.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Principal.Windows.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.Principal.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Principal.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.SecureString.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.SecureString.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Security.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ServiceModel.Web.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ServiceModel.Web.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ServiceProcess.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ServiceProcess.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.CodePages.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.CodePages.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.Extensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.Extensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encoding.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.Json.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Json.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Text.RegularExpressions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.RegularExpressions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Channels.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Channels.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Overlapped.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Overlapped.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Dataflow.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Extensions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.Parallel.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Thread.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Thread.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.Timer.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Timer.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Threading.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Transactions.Local.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Transactions.Local.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Transactions.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Transactions.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.ValueTuple.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ValueTuple.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Web.HttpUtility.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Web.HttpUtility.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Web.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Web.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Windows.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Windows.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.Linq.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.Linq.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.ReaderWriter.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.ReaderWriter.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.Serialization.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.Serialization.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XDocument.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XDocument.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XPath.XDocument.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XPath.XDocument.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XPath.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XPath.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XmlDocument.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XmlDocument.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.XmlSerializer.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XmlSerializer.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.Xml.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/System.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/WindowsBase.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/WindowsBase.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.js.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.js.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.timezones.blat.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.timezones.blat.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.wasm.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt.dat.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt.dat.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_CJK.dat.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_CJK.dat.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_EFIGS.dat.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_EFIGS.dat.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/icudt_no_CJK.dat.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_no_CJK.dat.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/mscorlib.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/mscorlib.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\build-gz\\[[_framework/netstandard.dll.gz]]",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/netstandard.dll.gz",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\custom-service-worker-assets.js",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "custom-service-worker-assets.js",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\custom-service-worker-assets.js"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.js",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "obj\\Debug\\net5\\dotnet.${RuntimeVersion}.js"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "serviceworkers/my-service-worker.js",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\net5\\serviceworkers\\wwwroot\\serviceworkers\\my-service-worker.js"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "Fake-License.txt",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "css/app.css",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\css\\app.css"
- },
- {
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "index.html",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html"
- },
- {
- "Identity": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/RazorClassLibrary.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll"
- },
- {
- "Identity": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.pdb",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/RazorClassLibrary.pdb",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\bin\\Debug\\netstandard2.1\\RazorClassLibrary.dll"
- },
- {
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
- "SourceId": "RazorClassLibrary",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
- "BasePath": "_content/RazorClassLibrary",
- "RelativePath": "styles.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css"
- },
- {
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
- "SourceId": "RazorClassLibrary",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
- "BasePath": "_content/RazorClassLibrary",
- "RelativePath": "wwwroot/exampleJsInterop.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.authorization\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Authorization.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.forms\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Forms.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.web\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.Web.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/blazor.webassembly.js",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.WebAssembly.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Components.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.metadata\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.AspNetCore.Metadata.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Abstractions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.binder\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.Binder.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.fileextensions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.FileExtensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration.json\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Configuration.Json.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.configuration\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Configuration.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.dependencyinjection\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.DependencyInjection.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Abstractions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.fileproviders.physical\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileProviders.Physical.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.filesystemglobbing\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.FileSystemGlobbing.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging.abstractions\\[[CustomPackageVersion]]\\lib\\netstandard2.0\\Microsoft.Extensions.Logging.Abstractions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.logging\\[[CustomPackageVersion]]\\lib\\netstandard2.1\\Microsoft.Extensions.Logging.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Options.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.options\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.Extensions.Options.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.extensions.primitives\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\Microsoft.Extensions.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop.webassembly\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.WebAssembly.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.JSInterop.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.jsinterop\\[[CustomPackageVersion]]\\lib\\net5.0\\Microsoft.JSInterop.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.CSharp.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.CSharp.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.VisualBasic.Core.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.Core.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.VisualBasic.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.VisualBasic.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Win32.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/Microsoft.Win32.Registry.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\Microsoft.Win32.Registry.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.AppContext.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.AppContext.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Buffers.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Buffers.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Concurrent.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Concurrent.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Immutable.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Immutable.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.NonGeneric.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.NonGeneric.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.Specialized.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.Specialized.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Collections.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Collections.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.Annotations.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Annotations.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.DataAnnotations.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.DataAnnotations.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.EventBasedAsync.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.EventBasedAsync.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.TypeConverter.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ComponentModel.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ComponentModel.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Configuration.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Configuration.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Console.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Console.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Core.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Core.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.Common.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.Common.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.DataSetExtensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.DataSetExtensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Data.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Data.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Contracts.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Contracts.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Debug.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Debug.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.DiagnosticSource.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.FileVersionInfo.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.FileVersionInfo.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Process.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Process.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.StackTrace.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.StackTrace.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.TextWriterTraceListener.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TextWriterTraceListener.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Tools.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tools.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.TraceSource.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.TraceSource.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Diagnostics.Tracing.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Diagnostics.Tracing.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Drawing.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Drawing.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Drawing.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Dynamic.Runtime.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Dynamic.Runtime.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Formats.Asn1.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Formats.Asn1.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.Calendars.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Calendars.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.Extensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.Extensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Globalization.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Globalization.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.Brotli.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.Brotli.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.FileSystem.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.FileSystem.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.ZipFile.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.ZipFile.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Compression.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Compression.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.AccessControl.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.AccessControl.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.DriveInfo.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.DriveInfo.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.Watcher.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.FileSystem.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.FileSystem.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.IsolatedStorage.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.IsolatedStorage.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.MemoryMappedFiles.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.MemoryMappedFiles.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipes.AccessControl.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.AccessControl.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipes.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.Pipes.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.UnmanagedMemoryStream.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.UnmanagedMemoryStream.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.IO.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Expressions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Expressions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Parallel.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Parallel.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.Queryable.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.Queryable.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Linq.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Linq.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Memory.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Memory.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Http.Json.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.Json.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Http.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Http.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.HttpListener.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.HttpListener.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Mail.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Mail.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.NameResolution.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NameResolution.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.NetworkInformation.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.NetworkInformation.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Ping.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Ping.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Requests.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Requests.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Security.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Security.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.ServicePoint.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.ServicePoint.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.Sockets.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.Sockets.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebClient.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebClient.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebHeaderCollection.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebHeaderCollection.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebProxy.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebProxy.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebSockets.Client.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.Client.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.WebSockets.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.WebSockets.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Net.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Net.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Numerics.Vectors.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.Vectors.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Numerics.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Numerics.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ObjectModel.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ObjectModel.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.DataContractSerialization.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.DataContractSerialization.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Runtime.InteropServices.JavaScript.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Uri.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Uri.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Xml.Linq.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.Linq.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.Xml.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Private.Xml.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.DispatchProxy.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.DispatchProxy.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.ILGeneration.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.Lightweight.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Emit.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Emit.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Extensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Extensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Metadata.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Metadata.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.TypeExtensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.TypeExtensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Reflection.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Reflection.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.Reader.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Reader.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.ResourceManager.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.ResourceManager.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Resources.Writer.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Resources.Writer.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.Unsafe.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.CompilerServices.VisualC.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.CompilerServices.VisualC.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Extensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Extensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Handles.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Handles.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.RuntimeInformation.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.InteropServices.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.InteropServices.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Intrinsics.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Intrinsics.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Loader.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Loader.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Numerics.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Numerics.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Formatters.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Formatters.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Json.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Json.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.Xml.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.Xml.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.Serialization.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.Serialization.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Runtime.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Runtime.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.AccessControl.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.AccessControl.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Claims.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Claims.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Algorithms.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Cng.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Cng.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Csp.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Csp.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Encoding.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Encoding.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.OpenSsl.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.OpenSsl.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.Primitives.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Cryptography.X509Certificates.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Cryptography.X509Certificates.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Principal.Windows.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.Windows.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.Principal.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.Principal.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.SecureString.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.SecureString.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Security.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Security.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ServiceModel.Web.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceModel.Web.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ServiceProcess.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ServiceProcess.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.CodePages.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.CodePages.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.Extensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.Extensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encoding.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encoding.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Encodings.Web.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Encodings.Web.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.Json.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.Json.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Text.RegularExpressions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Text.RegularExpressions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Channels.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Channels.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Overlapped.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Overlapped.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Dataflow.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Dataflow.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Extensions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Extensions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.Parallel.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.Parallel.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Tasks.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Tasks.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Thread.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Thread.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.ThreadPool.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.ThreadPool.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.Timer.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.Timer.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Threading.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Threading.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Transactions.Local.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.Local.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Transactions.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Transactions.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.ValueTuple.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.ValueTuple.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Web.HttpUtility.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.HttpUtility.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Web.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Web.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Windows.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Windows.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.Linq.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Linq.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.ReaderWriter.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.ReaderWriter.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.Serialization.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.Serialization.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XDocument.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XDocument.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XPath.XDocument.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.XDocument.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XPath.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XPath.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XmlDocument.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlDocument.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.XmlSerializer.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.XmlSerializer.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Xml.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.Xml.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\System.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/WindowsBase.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\WindowsBase.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/mscorlib.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\mscorlib.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/netstandard.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\lib\\net5.0\\netstandard.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.Private.CoreLib.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\System.Private.CoreLib.dll"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.timezones.blat",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.timezones.blat"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/dotnet.wasm",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\dotnet.wasm"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt.dat",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt.dat"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_CJK.dat",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_CJK.dat"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_EFIGS.dat",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_EFIGS.dat"
- },
- {
- "Identity": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/icudt_no_CJK.dat",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\microsoft.netcore.app.runtime.browser-wasm\\[[CustomPackageVersion]]\\runtimes\\browser-wasm\\native\\icudt_no_CJK.dat"
- },
- {
- "Identity": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll",
- "SourceId": "blazorwasm",
- "SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\net5\\wwwroot\\",
- "BasePath": "/",
- "RelativePath": "_framework/System.IO.Pipelines.dll",
- "AssetKind": "Build",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "Never",
- "OriginalItemSpec": "${RestorePath}\\system.io.pipelines\\[[CustomPackageVersion]]\\lib\\netcoreapp3.0\\System.IO.Pipelines.dll"
- }
- ]
-}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.files.json
index fcd021e1c76f..31308214f7cc 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
@@ -198,9 +198,9 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
@@ -229,7 +229,7 @@
"${OutputPath}\\wwwroot\\css\\app.css",
"${OutputPath}\\wwwroot\\index.html",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
- "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
@@ -237,155 +237,155 @@
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
@@ -452,5 +452,234 @@
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm-minimal.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\appsettings.development.json",
+ "${OutputPath}\\wwwroot\\appsettings.development.json.br",
+ "${OutputPath}\\wwwroot\\appsettings.development.json.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm-minimal.styles.css",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\index.html"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json
index ba20512edc5a..2dbbc3db4aa0 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_PublishMinimal_Works.Publish.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "blazorwasm-minimal\\wwwroot",
"Source": "blazorwasm-minimal",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -31,15 +31,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -48,13 +48,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -65,13 +65,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -82,13 +82,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -99,13 +99,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -116,13 +116,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -133,13 +133,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -150,13 +150,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -170,2577 +170,2577 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm-minimal.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm-minimal.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm-minimal.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm-minimal.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm-minimal.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm-minimal.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[appsettings.development.json.br]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.br",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "appsettings.development.json.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\wwwroot\\appsettings.development.json",
+ "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\wwwroot\\appsettings.development.json"
+ "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.br"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\compress\\[[appsettings.development.json.gz]]",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\compress\\appsettings.development.json.gz",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "appsettings.development.json.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\wwwroot\\appsettings.development.json",
+ "RelatedAsset": "${ProjectPath}\\wwwroot\\appsettings.development.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\wwwroot\\appsettings.development.json"
+ "OriginalItemSpec": "${ProjectPath}\\wwwroot\\appsettings.development.json.gz"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2754,10 +2754,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2771,10 +2771,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2788,10 +2788,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2805,10 +2805,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2822,10 +2822,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2839,10 +2839,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2856,10 +2856,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2873,10 +2873,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2890,10 +2890,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2907,10 +2907,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -2924,10 +2924,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -2941,10 +2941,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -2958,10 +2958,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -2975,10 +2975,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -2992,10 +2992,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -3009,10 +3009,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -3026,10 +3026,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3043,10 +3043,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3060,10 +3060,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3077,10 +3077,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3094,10 +3094,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3111,10 +3111,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3128,10 +3128,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3145,10 +3145,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3162,10 +3162,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3179,10 +3179,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3196,10 +3196,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3213,10 +3213,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3230,10 +3230,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3247,10 +3247,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3264,10 +3264,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3281,10 +3281,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3298,10 +3298,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3315,10 +3315,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3332,10 +3332,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3349,10 +3349,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3366,10 +3366,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3383,10 +3383,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3400,10 +3400,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3417,10 +3417,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3434,10 +3434,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3451,10 +3451,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3468,10 +3468,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3485,10 +3485,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3502,10 +3502,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3519,10 +3519,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3536,10 +3536,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3553,10 +3553,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3570,10 +3570,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3587,10 +3587,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3604,10 +3604,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3621,10 +3621,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3638,10 +3638,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3655,10 +3655,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3672,10 +3672,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3689,10 +3689,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3706,10 +3706,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3723,10 +3723,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3740,10 +3740,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3757,10 +3757,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3774,10 +3774,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3791,10 +3791,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3808,10 +3808,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm-minimal.dll",
"AssetKind": "Publish",
@@ -3825,10 +3825,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm-minimal.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3842,10 +3842,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.styles.css",
"AssetKind": "All",
@@ -3856,13 +3856,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm-minimal.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm-minimal.bundle.scp.css",
"AssetKind": "All",
@@ -3873,13 +3873,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\blazorwasm-minimal.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\appsettings.development.json",
+ "Identity": "${ProjectPath}\\wwwroot\\appsettings.development.json",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "appsettings.development.json",
"AssetKind": "All",
@@ -3893,10 +3893,10 @@
"OriginalItemSpec": "wwwroot\\appsettings.development.json"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\css\\app.css",
+ "Identity": "${ProjectPath}\\wwwroot\\css\\app.css",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "All",
@@ -3910,10 +3910,10 @@
"OriginalItemSpec": "wwwroot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "blazorwasm-minimal",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json
index 184589b7f250..697f72eae983 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.files.json
@@ -205,9 +205,244 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm.styles.css",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
+ "${OutputPath}\\wwwroot\\index.html",
+ "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js",
+ "${OutputPath}\\wwwroot\\Fake-License.txt",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
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 c398e943f974..79b2e030c5ec 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_DoesNotIncludeXmlDocumentationFiles_AsAssets.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 2,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Publish",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "LinkToWebRoot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -78,15 +78,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -95,13 +95,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -112,13 +112,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -129,13 +129,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -146,13 +146,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -163,13 +163,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -180,13 +180,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -197,13 +197,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -217,2594 +217,2594 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Publish",
@@ -2818,10 +2818,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2835,10 +2835,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2852,10 +2852,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2869,10 +2869,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2886,10 +2886,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2903,10 +2903,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2920,10 +2920,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2937,10 +2937,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2954,10 +2954,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2971,10 +2971,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2988,10 +2988,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -3005,10 +3005,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -3022,10 +3022,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -3039,10 +3039,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -3056,10 +3056,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -3073,10 +3073,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -3090,10 +3090,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -3107,10 +3107,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3124,10 +3124,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3141,10 +3141,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3158,10 +3158,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3175,10 +3175,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3192,10 +3192,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Publish",
@@ -3209,10 +3209,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3226,10 +3226,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3243,10 +3243,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3260,10 +3260,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3277,10 +3277,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3294,10 +3294,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3311,10 +3311,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3328,10 +3328,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3345,10 +3345,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3362,10 +3362,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3413,10 +3413,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3430,10 +3430,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3447,10 +3447,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3464,10 +3464,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3481,10 +3481,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3498,10 +3498,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3515,10 +3515,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3532,10 +3532,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3549,10 +3549,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3566,10 +3566,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3583,10 +3583,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3600,10 +3600,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3617,10 +3617,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3634,10 +3634,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3651,10 +3651,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3668,10 +3668,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3685,10 +3685,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3702,10 +3702,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3719,10 +3719,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3736,10 +3736,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3753,10 +3753,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3770,10 +3770,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3787,10 +3787,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3804,10 +3804,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3821,10 +3821,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3838,10 +3838,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3855,10 +3855,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3872,10 +3872,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3889,10 +3889,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3906,10 +3906,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Publish",
@@ -3923,10 +3923,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3940,10 +3940,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm.styles.css",
"AssetKind": "All",
@@ -3954,13 +3954,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Publish",
@@ -3974,10 +3974,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -3991,10 +3991,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -4008,10 +4008,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -4025,10 +4025,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json
index 184589b7f250..697f72eae983 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.files.json
@@ -205,9 +205,244 @@
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
"${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.br",
- "${OutputPath}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.wasm.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_EFIGS.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.br",
+ "${OutputPath}\\wwwroot\\_framework\\icudt_no_CJK.dat.gz",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\netstandard.dll.gz",
+ "${OutputPath}\\wwwroot\\blazorwasm.styles.css",
+ "${OutputPath}\\wwwroot\\css\\app.css",
+ "${OutputPath}\\wwwroot\\custom-service-worker-assets.js",
+ "${OutputPath}\\wwwroot\\index.html",
+ "${OutputPath}\\wwwroot\\serviceworkers\\my-service-worker.js",
+ "${OutputPath}\\wwwroot\\Fake-License.txt",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\styles.css",
+ "${OutputPath}\\wwwroot\\_content\\RazorClassLibrary\\wwwroot\\exampleJsInterop.js",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Logging.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\RazorClassLibrary.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Buffers.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Concurrent.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.NonGeneric.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.Specialized.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Collections.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Annotations.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ComponentModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Console.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Debug.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Diagnostics.Tracing.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.IO.Pipelines.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.Expressions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Linq.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Memory.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Net.Http.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.ObjectModel.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.CoreLib.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Private.Uri.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Reflection.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Resources.ResourceManager.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Extensions.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.Loader.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Runtime.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Claims.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Encodings.Web.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Text.Json.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.Tasks.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.ThreadPool.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.Threading.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\System.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.boot.json.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazor.webassembly.js.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.br",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.dll.gz",
+ "${OutputPath}\\wwwroot\\_framework\\blazorwasm.pdb.gz",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.br",
+ "${OutputPath}\\wwwroot\\_framework\\dotnet.js.gz",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.br",
"${OutputPath}\\wwwroot\\_framework\\dotnet.timezones.blat.gz",
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 c398e943f974..79b2e030c5ec 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/StaticWebAssetsBaselines/StaticWebAssets_Publish_Hosted_Works.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\blazorwasm.csproj",
+ "Identity": "${ProjectPath}\\blazorwasm\\blazorwasm.csproj",
"Version": 2,
"Source": "blazorwasm",
"GetPublishAssetsTargets": "ComputeFilesToPublish;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\RazorClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\RazorClassLibrary.csproj",
"Version": 2,
"Source": "RazorClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "RazorClassLibrary\\wwwroot",
"Source": "RazorClassLibrary",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"Pattern": "**"
},
{
"Name": "blazorwasm\\wwwroot",
"Source": "blazorwasm",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\LinkToWebRoot\\css\\app.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "css/app.css",
"AssetKind": "Publish",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "LinkToWebRoot\\css\\app.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js",
"AssetKind": "All",
@@ -78,15 +78,15 @@
"AssetTraitValue": "boot",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\[[CustomPackageVersion]]\\build\\net5.0\\blazor.webassembly.js"
+ "OriginalItemSpec": "${RestorePath}\\microsoft.aspnetcore.components.webassembly\\${PackageVersion}\\build\\${PackageTfm}\\blazor.webassembly.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelativePath": "_framework/dotnet.js",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -95,13 +95,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat",
"AssetKind": "Publish",
@@ -112,13 +112,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm",
"AssetKind": "Publish",
@@ -129,13 +129,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat",
"AssetKind": "Publish",
@@ -146,13 +146,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat",
"AssetKind": "Publish",
@@ -163,13 +163,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat",
"AssetKind": "Publish",
@@ -180,13 +180,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat",
"AssetKind": "Publish",
@@ -197,13 +197,13 @@
"AssetTraitValue": "native",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json",
"AssetKind": "Publish",
@@ -217,2594 +217,2594 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\RazorClassLibrary.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/RazorClassLibrary.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\RazorClassLibrary.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazor.webassembly.js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazor.webassembly.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.gz",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.pdb.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazorwasm.pdb",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/blazorwasm.pdb.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\blazorwasm.pdb.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz",
+ "RelativePath": "_framework/dotnet.js.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.js.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\[[_framework/dotnet.wasm.gz]]"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\build-gz\\_framework\\dotnet.wasm.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Authorization.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Authorization.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Forms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Forms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Components.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Components.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Components.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.AspNetCore.Metadata.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.AspNetCore.Metadata.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Binder.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Binder.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.FileExtensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Configuration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Configuration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Configuration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.DependencyInjection.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.DependencyInjection.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileProviders.Physical.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.FileSystemGlobbing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.Abstractions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Logging.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Logging.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Logging.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Options.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Options.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Options.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.Extensions.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.Extensions.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.Extensions.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.WebAssembly.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.WebAssembly.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/Microsoft.JSInterop.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\Microsoft.JSInterop.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\Microsoft.JSInterop.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/RazorClassLibrary.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\RazorClassLibrary.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\RazorClassLibrary.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Buffers.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Buffers.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Buffers.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Concurrent.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Concurrent.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Concurrent.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.NonGeneric.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.NonGeneric.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.NonGeneric.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.Specialized.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.Specialized.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.Specialized.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Collections.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Collections.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Collections.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Annotations.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Annotations.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Annotations.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.TypeConverter.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.TypeConverter.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.TypeConverter.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ComponentModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ComponentModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ComponentModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Console.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Console.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Console.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Debug.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Debug.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Debug.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.DiagnosticSource.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.DiagnosticSource.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Diagnostics.Tracing.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Diagnostics.Tracing.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Diagnostics.Tracing.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.FileSystem.Watcher.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.FileSystem.Watcher.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.FileSystem.Watcher.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.IO.Pipelines.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.IO.Pipelines.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.IO.Pipelines.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.Expressions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.Expressions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.Expressions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Linq.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Linq.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Linq.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Memory.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Memory.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Memory.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Net.Http.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Net.Http.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Net.Http.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.ObjectModel.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.ObjectModel.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.ObjectModel.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.CoreLib.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.CoreLib.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.CoreLib.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Runtime.InteropServices.JavaScript.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Private.Uri.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Private.Uri.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Private.Uri.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.ILGeneration.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.ILGeneration.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Emit.Lightweight.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Emit.Lightweight.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Emit.Lightweight.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Reflection.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Reflection.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Reflection.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Resources.ResourceManager.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Resources.ResourceManager.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Resources.ResourceManager.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.CompilerServices.Unsafe.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.CompilerServices.Unsafe.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Extensions.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Extensions.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Extensions.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.InteropServices.RuntimeInformation.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.Loader.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.Loader.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.Loader.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Runtime.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Runtime.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Runtime.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Claims.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Claims.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Claims.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Algorithms.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Algorithms.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Algorithms.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Security.Cryptography.Primitives.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Security.Cryptography.Primitives.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Security.Cryptography.Primitives.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Encodings.Web.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Encodings.Web.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Encodings.Web.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Text.Json.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Text.Json.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Text.Json.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.Tasks.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.Tasks.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.Tasks.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.ThreadPool.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.ThreadPool.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.ThreadPool.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.Threading.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.Threading.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.Threading.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/System.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\System.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\System.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.boot.json.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.boot.json.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.boot.json.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\blazor.publish.boot.json"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\_framework\\blazor.boot.json.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazor.webassembly.js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazor.webassembly.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazor.webassembly.js.br",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\blazor.webassembly.js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\blazor.webassembly.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/blazorwasm.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\blazorwasm.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\blazorwasm.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.${RuntimeVersion}.[[hash]].js.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.js.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
- "RelativePath": "_framework/dotnet.${RuntimeVersion}.[[hash]].js.br",
+ "RelativePath": "_framework/dotnet.js.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.js",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.${RuntimeVersion}.[[hash]].js"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.js.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.timezones.blat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.timezones.blat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.timezones.blat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.timezones.blat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.timezones.blat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/dotnet.wasm.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\dotnet.wasm.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/dotnet.wasm.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\dotnet.wasm"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\dotnet.wasm.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_EFIGS.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_EFIGS.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_EFIGS.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_EFIGS.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_EFIGS.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/icudt_no_CJK.dat.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\icudt_no_CJK.dat.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/icudt_no_CJK.dat.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\icudt_no_CJK.dat"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\icudt_no_CJK.dat.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.br]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.br",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.br",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "br",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.br"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\[[_framework/netstandard.dll.gz]]",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compress\\_framework\\netstandard.dll.gz",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll.gz",
"AssetKind": "Publish",
"AssetMode": "All",
"AssetRole": "Alternative",
- "RelatedAsset": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "RelatedAsset": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\_framework\\netstandard.dll.gz"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\custom-service-worker-assets.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "custom-service-worker-assets.js",
"AssetKind": "Publish",
@@ -2818,10 +2818,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\custom-service-worker-assets.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Authorization.dll",
"AssetKind": "Publish",
@@ -2835,10 +2835,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Authorization.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Forms.dll",
"AssetKind": "Publish",
@@ -2852,10 +2852,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Forms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.Web.dll",
"AssetKind": "Publish",
@@ -2869,10 +2869,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.WebAssembly.dll",
"AssetKind": "Publish",
@@ -2886,10 +2886,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Components.dll",
"AssetKind": "Publish",
@@ -2903,10 +2903,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Components.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.AspNetCore.Metadata.dll",
"AssetKind": "Publish",
@@ -2920,10 +2920,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.AspNetCore.Metadata.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Abstractions.dll",
"AssetKind": "Publish",
@@ -2937,10 +2937,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Binder.dll",
"AssetKind": "Publish",
@@ -2954,10 +2954,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Binder.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.FileExtensions.dll",
"AssetKind": "Publish",
@@ -2971,10 +2971,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.FileExtensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.Json.dll",
"AssetKind": "Publish",
@@ -2988,10 +2988,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Configuration.dll",
"AssetKind": "Publish",
@@ -3005,10 +3005,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Configuration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"AssetKind": "Publish",
@@ -3022,10 +3022,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.DependencyInjection.dll",
"AssetKind": "Publish",
@@ -3039,10 +3039,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.DependencyInjection.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Abstractions.dll",
"AssetKind": "Publish",
@@ -3056,10 +3056,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileProviders.Physical.dll",
"AssetKind": "Publish",
@@ -3073,10 +3073,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileProviders.Physical.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.FileSystemGlobbing.dll",
"AssetKind": "Publish",
@@ -3090,10 +3090,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.FileSystemGlobbing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.Abstractions.dll",
"AssetKind": "Publish",
@@ -3107,10 +3107,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.Abstractions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Logging.dll",
"AssetKind": "Publish",
@@ -3124,10 +3124,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Logging.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Options.dll",
"AssetKind": "Publish",
@@ -3141,10 +3141,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Options.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Primitives.dll",
"AssetKind": "Publish",
@@ -3158,10 +3158,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.Extensions.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.WebAssembly.dll",
"AssetKind": "Publish",
@@ -3175,10 +3175,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.WebAssembly.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.JSInterop.dll",
"AssetKind": "Publish",
@@ -3192,10 +3192,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\Microsoft.JSInterop.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/RazorClassLibrary.dll",
"AssetKind": "Publish",
@@ -3209,10 +3209,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\RazorClassLibrary.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Buffers.dll",
"AssetKind": "Publish",
@@ -3226,10 +3226,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Buffers.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Concurrent.dll",
"AssetKind": "Publish",
@@ -3243,10 +3243,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Concurrent.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.NonGeneric.dll",
"AssetKind": "Publish",
@@ -3260,10 +3260,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.NonGeneric.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.Specialized.dll",
"AssetKind": "Publish",
@@ -3277,10 +3277,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.Specialized.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Collections.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Collections.dll",
"AssetKind": "Publish",
@@ -3294,10 +3294,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Collections.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Annotations.dll",
"AssetKind": "Publish",
@@ -3311,10 +3311,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Annotations.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.Primitives.dll",
"AssetKind": "Publish",
@@ -3328,10 +3328,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.TypeConverter.dll",
"AssetKind": "Publish",
@@ -3345,10 +3345,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.TypeConverter.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ComponentModel.dll",
"AssetKind": "Publish",
@@ -3362,10 +3362,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ComponentModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Console.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Console.dll",
"AssetKind": "Publish",
@@ -3379,10 +3379,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Console.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Debug.dll",
"AssetKind": "Publish",
@@ -3396,10 +3396,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Debug.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.DiagnosticSource.dll",
"AssetKind": "Publish",
@@ -3413,10 +3413,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.DiagnosticSource.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Diagnostics.Tracing.dll",
"AssetKind": "Publish",
@@ -3430,10 +3430,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Diagnostics.Tracing.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.FileSystem.Watcher.dll",
"AssetKind": "Publish",
@@ -3447,10 +3447,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.FileSystem.Watcher.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.IO.Pipelines.dll",
"AssetKind": "Publish",
@@ -3464,10 +3464,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.IO.Pipelines.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.Expressions.dll",
"AssetKind": "Publish",
@@ -3481,10 +3481,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.Expressions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Linq.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Linq.dll",
"AssetKind": "Publish",
@@ -3498,10 +3498,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Linq.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Memory.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Memory.dll",
"AssetKind": "Publish",
@@ -3515,10 +3515,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Memory.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Net.Http.dll",
"AssetKind": "Publish",
@@ -3532,10 +3532,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Net.Http.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.ObjectModel.dll",
"AssetKind": "Publish",
@@ -3549,10 +3549,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.ObjectModel.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.CoreLib.dll",
"AssetKind": "Publish",
@@ -3566,10 +3566,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.CoreLib.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Runtime.InteropServices.JavaScript.dll",
"AssetKind": "Publish",
@@ -3583,10 +3583,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Runtime.InteropServices.JavaScript.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Private.Uri.dll",
"AssetKind": "Publish",
@@ -3600,10 +3600,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Private.Uri.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.ILGeneration.dll",
"AssetKind": "Publish",
@@ -3617,10 +3617,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.ILGeneration.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Emit.Lightweight.dll",
"AssetKind": "Publish",
@@ -3634,10 +3634,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Emit.Lightweight.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Reflection.Primitives.dll",
"AssetKind": "Publish",
@@ -3651,10 +3651,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Reflection.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Resources.ResourceManager.dll",
"AssetKind": "Publish",
@@ -3668,10 +3668,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Resources.ResourceManager.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.CompilerServices.Unsafe.dll",
"AssetKind": "Publish",
@@ -3685,10 +3685,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.CompilerServices.Unsafe.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Extensions.dll",
"AssetKind": "Publish",
@@ -3702,10 +3702,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Extensions.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.InteropServices.RuntimeInformation.dll",
"AssetKind": "Publish",
@@ -3719,10 +3719,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.InteropServices.RuntimeInformation.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.Loader.dll",
"AssetKind": "Publish",
@@ -3736,10 +3736,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.Loader.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Runtime.dll",
"AssetKind": "Publish",
@@ -3753,10 +3753,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Runtime.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Claims.dll",
"AssetKind": "Publish",
@@ -3770,10 +3770,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Claims.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Algorithms.dll",
"AssetKind": "Publish",
@@ -3787,10 +3787,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Algorithms.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Security.Cryptography.Primitives.dll",
"AssetKind": "Publish",
@@ -3804,10 +3804,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Security.Cryptography.Primitives.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Encodings.Web.dll",
"AssetKind": "Publish",
@@ -3821,10 +3821,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Encodings.Web.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Text.Json.dll",
"AssetKind": "Publish",
@@ -3838,10 +3838,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Text.Json.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.Tasks.dll",
"AssetKind": "Publish",
@@ -3855,10 +3855,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.Tasks.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.ThreadPool.dll",
"AssetKind": "Publish",
@@ -3872,10 +3872,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.ThreadPool.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.Threading.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.Threading.dll",
"AssetKind": "Publish",
@@ -3889,10 +3889,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.Threading.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\System.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/System.dll",
"AssetKind": "Publish",
@@ -3906,10 +3906,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\System.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/blazorwasm.dll",
"AssetKind": "Publish",
@@ -3923,10 +3923,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\blazorwasm.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\linked\\netstandard.dll",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\publish\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/netstandard.dll",
"AssetKind": "Publish",
@@ -3940,10 +3940,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\linked\\netstandard.dll"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "/",
"RelativePath": "blazorwasm.styles.css",
"AssetKind": "All",
@@ -3954,13 +3954,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\blazorwasm.styles.css"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
+ "Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\my-prod-service-worker.js",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\service-worker\\",
"BasePath": "/",
"RelativePath": "serviceworkers/my-service-worker.js",
"AssetKind": "Publish",
@@ -3974,10 +3974,10 @@
"OriginalItemSpec": "wwwroot\\serviceworkers\\my-prod-service-worker.js"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\Fake-License.txt",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\Fake-License.txt",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "Fake-License.txt",
"AssetKind": "All",
@@ -3991,10 +3991,10 @@
"OriginalItemSpec": "wwwroot\\Fake-License.txt"
},
{
- "Identity": "${ProjectRoot}\\blazorwasm\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\blazorwasm\\wwwroot\\index.html",
"SourceId": "blazorwasm",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\blazorwasm\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\blazorwasm\\wwwroot\\",
"BasePath": "/",
"RelativePath": "index.html",
"AssetKind": "All",
@@ -4008,10 +4008,10 @@
"OriginalItemSpec": "wwwroot\\index.html"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\styles.css",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\styles.css",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "styles.css",
"AssetKind": "All",
@@ -4025,10 +4025,10 @@
"OriginalItemSpec": "wwwroot\\styles.css"
},
{
- "Identity": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
+ "Identity": "${ProjectPath}\\razorclasslibrary\\wwwroot\\wwwroot\\exampleJsInterop.js",
"SourceId": "RazorClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\razorclasslibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\razorclasslibrary\\wwwroot\\",
"BasePath": "_content/RazorClassLibrary",
"RelativePath": "wwwroot/exampleJsInterop.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs
index 6479550cb23f..7821f9081a2a 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIntegrationTest.cs
@@ -474,7 +474,7 @@ public void Build_SatelliteAssembliesAreCopiedToBuildOutput()
new FileInfo(finalPath).Should().Exist();
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
diff --git a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs
index 6f951d52a70c..23080dff0ac1 100644
--- a/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs
+++ b/src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmJsModulesIntegrationTests.cs
@@ -124,7 +124,7 @@ public void Publish_DoesNotGenerateManifestJson_IncludesJSModulesOnBlazorBootJso
lib.Should().Exist();
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -175,7 +175,7 @@ public void JsModules_CanHaveDifferentBuildAndPublishModules()
publishLibrary.GetString().Should().Be(wwwrootPublishLibrary.GetString());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
@@ -250,7 +250,7 @@ public void JsModules_CanCustomizeBlazorInitialization()
extension.Should().Exist();
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -316,7 +316,7 @@ public void JsModules_Hosted_CanCustomizeBlazorInitialization()
extension.Should().Exist();
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs
index f43982291904..3aa25ccd7f44 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/AspNetSdkBaselineTest.cs
@@ -2,13 +2,11 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
-using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text.Json;
-using System.Text.RegularExpressions;
using FluentAssertions;
using Microsoft.AspNetCore.Razor.Tasks;
using Microsoft.NET.TestFramework;
@@ -21,47 +19,33 @@ namespace Microsoft.NET.Sdk.Razor.Tests
public class AspNetSdkBaselineTest : AspNetSdkTest
{
private static readonly JsonSerializerOptions BaselineSerializationOptions = new() { WriteIndented = true };
- private static readonly string BaselineGenerationInstructions =
- @"If the difference in baselines is expected, please re-generate the baselines.
-Note, baseline generation must be done on a Windows device.
-Start by ensuring you're dogfooding the SDK from the current branch (dotnet --version should be '*.0.0-dev').
- If you're not on the dogfood sdk, from the root of the repository run:
- 1. dotnet clean
- 2. .\restore.cmd
- 3. .\build.cmd
- 4. .\eng\dogfood.cmd
-
-Then, using the dogfood SDK run the .\src\RazorSdk\update-test-baselines.ps1 script.";
-
- protected static readonly string DotNetJSHashRegexPattern = "\\.[a-z0-9]{10}\\.js";
- protected static readonly string DotNetJSHashTemplate = ".[[hash]].js";
+ private readonly StaticWebAssetsBaselineComparer _comparer;
+ private readonly StaticWebAssetsBaselineFactory _baselineFactory;
private string _baselinesFolder;
#if GENERATE_SWA_BASELINES
public static bool GenerateBaselines = true;
#else
- public static bool GenerateBaselines = false;
+ public static bool GenerateBaselines = bool.TryParse(Environment.GetEnvironmentVariable("ASPNETCORE_TEST_BASELINES"), out var result) && result;
#endif
private bool _generateBaselines = GenerateBaselines;
- // This allows templatizing paths that don't have a deterministic name, for example the files we gzip or brotli as part
- // of Blazor compilations. We only need to do this for the manifest since the tests for files don't use the original
- // path. Returning null avoids any transformation
- protected Func PathTemplatizer { get; set; } = (asset, originalValue, related) => null;
-
public AspNetSdkBaselineTest(ITestOutputHelper log) : base(log)
{
TestAssembly = Assembly.GetCallingAssembly();
var testAssemblyMetadata = TestAssembly.GetCustomAttributes();
RuntimeVersion = testAssemblyMetadata.SingleOrDefault(a => a.Key == "NetCoreAppRuntimePackageVersion").Value;
DefaultPackageVersion = testAssemblyMetadata.SingleOrDefault(a => a.Key == "DefaultTestBaselinePackageVersion").Value;
+ _comparer = CreateBaselineComparer();
+ _baselineFactory = CreateBaselineFactory();
}
public AspNetSdkBaselineTest(ITestOutputHelper log, bool generateBaselines) : this(log)
{
_generateBaselines = generateBaselines;
+ _comparer = CreateBaselineComparer();
}
public TestAsset ProjectDirectory { get; set; }
@@ -75,6 +59,16 @@ public AspNetSdkBaselineTest(ITestOutputHelper log, bool generateBaselines) : th
protected Assembly TestAssembly { get; }
+ protected virtual StaticWebAssetsBaselineComparer CreateBaselineComparer()
+ {
+ return StaticWebAssetsBaselineComparer.Instance;
+ }
+
+ private StaticWebAssetsBaselineFactory CreateBaselineFactory()
+ {
+ return StaticWebAssetsBaselineFactory.Instance;
+ }
+
protected virtual string ComputeBaselineFolder() =>
Path.Combine(TestContext.GetRepoRoot() ?? AppContext.BaseDirectory, "src", "Tests", "Microsoft.NET.Sdk.Razor.Tests", "StaticWebAssetsBaselines");
@@ -109,58 +103,6 @@ public StaticWebAssetsManifest LoadPublishManifest(string suffix = "", [CallerMe
}
}
- private void ApplyTemplatizerToAssets(StaticWebAssetsManifest manifest)
- {
- var assets = manifest.Assets;
- var assetsById = manifest.Assets.ToDictionary(a => a.Identity);
- for (int i = 0; i < assets.Length; i++)
- {
- var asset = assets[i];
- RemoveHashFromAsset(asset);
- var relatedAsset = string.IsNullOrEmpty(asset.RelatedAsset) || !assetsById.TryGetValue(asset.RelatedAsset, out var related) ?
- null : related;
- asset.Identity = PathTemplatizer(asset, asset.Identity, null) ?? asset.Identity;
- asset.RelatedAsset = PathTemplatizer(asset, asset.RelatedAsset, relatedAsset) ?? asset.RelatedAsset;
- asset.OriginalItemSpec = PathTemplatizer(asset, asset.OriginalItemSpec, null) ?? asset.OriginalItemSpec;
- }
- }
-
- private void RemoveHashFromAsset(StaticWebAsset asset)
- {
- asset.RelativePath = Regex.Replace(asset.RelativePath, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- asset.Identity = Regex.Replace(asset.Identity, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- asset.OriginalItemSpec = Regex.Replace(asset.OriginalItemSpec, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- asset.RelatedAsset = Regex.Replace(asset.RelatedAsset, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- }
-
- private void UpdateCustomPackageVersions(string restorePath, StaticWebAssetsManifest manifest)
- {
- foreach (var asset in manifest.Assets)
- {
- asset.Identity = UpdateAssetVersion(restorePath, asset.Identity);
- asset.ContentRoot = UpdateAssetVersion(restorePath, asset.ContentRoot);
- asset.ContentRoot = asset.ContentRoot.EndsWith(Path.DirectorySeparatorChar) ? asset.ContentRoot : asset.ContentRoot + Path.DirectorySeparatorChar;
- asset.OriginalItemSpec = UpdateAssetVersion(restorePath, asset.OriginalItemSpec);
- asset.RelatedAsset = UpdateAssetVersion(restorePath, asset.RelatedAsset);
- }
-
- string UpdateAssetVersion(string restorePath, string property)
- {
- if (property.Contains(restorePath))
- {
- var segments = property.Substring(restorePath.Length).Split(Path.DirectorySeparatorChar, StringSplitOptions.RemoveEmptyEntries);
- ref var versionSegment = ref segments[1];
- if (versionSegment != RuntimeVersion && versionSegment != DefaultPackageVersion)
- {
- versionSegment = "[[CustomPackageVersion]]";
- property = Path.Combine(segments.Prepend(restorePath).ToArray());
- }
- }
-
- return property;
- }
- }
-
protected void AssertBuildAssets(
StaticWebAssetsManifest manifest,
string outputFolder,
@@ -191,37 +133,31 @@ protected void AssertBuildAssets(
.Select(a => Path.GetFullPath(Path.Combine(a.ContentRoot, a.RelativePath))))
.ToArray();
+ var existingFiles = _baselineFactory.TemplatizeExpectedFiles(
+ wwwRootFiles
+ .Concat(computedFiles.Select(a => a.Identity))
+ .Concat(copyToOutputDirectoryFiles)
+ .Distinct()
+ .OrderBy(f => f, StringComparer.Ordinal)
+ .ToArray(),
+ TestContext.Current.NuGetCachePath,
+ ProjectDirectory.TestRoot,
+ intermediateOutputPath,
+ outputFolder);
+
+
if (!_generateBaselines)
{
- var expected = LoadExpectedFilesBaseline(manifest.ManifestType, outputFolder, intermediateOutputPath, suffix, name)
+ var expected = LoadExpectedFilesBaseline(manifest.ManifestType, suffix, name)
.OrderBy(f => f, StringComparer.Ordinal);
- var existingFiles = wwwRootFiles.Concat(computedFiles.Select(a => PathTemplatizer(a, a.Identity, null) ?? a.Identity)).Concat(copyToOutputDirectoryFiles)
- .Distinct()
- .Select(f => Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate))
- .OrderBy(f => f, StringComparer.Ordinal)
- .ToArray();
-
- existingFiles.ShouldBeEquivalentTo(expected);
+ existingFiles.Should().BeEquivalentTo(expected);
}
else
{
- var templatizedFiles = TemplatizeExpectedFiles(
- wwwRootFiles
- .Concat(computedFiles.Select(a => PathTemplatizer(a, a.Identity, null) ?? a.Identity))
- .Concat(copyToOutputDirectoryFiles)
- .Distinct()
- .OrderBy(f => f, StringComparer.Ordinal)
- .ToArray(),
- TestContext.Current.NuGetCachePath,
- outputFolder,
- ProjectDirectory.TestRoot,
- intermediateOutputPath)
- .OrderBy(o => o, StringComparer.Ordinal);
-
File.WriteAllText(
GetExpectedFilesPath(suffix, name, manifest.ManifestType),
- JsonSerializer.Serialize(templatizedFiles, BaselineSerializationOptions));
+ JsonSerializer.Serialize(existingFiles, BaselineSerializationOptions));
}
}
@@ -235,7 +171,8 @@ protected void AssertPublishAssets(
var fileEnumerationOptions = new EnumerationOptions { RecurseSubdirectories = true };
string wwwRootFolder = Path.Combine(publishFolder, "wwwroot");
var wwwRootFiles = Directory.Exists(wwwRootFolder) ?
- Directory.GetFiles(wwwRootFolder, "*", fileEnumerationOptions) :
+ Directory.GetFiles(wwwRootFolder, "*", fileEnumerationOptions)
+ .Select(f => _baselineFactory.TemplatizeFilePath(f, null, null, intermediateOutputPath, publishFolder)) :
Array.Empty();
// Computed publish assets must exist on disk (we do this check to quickly identify when something is not being
@@ -252,101 +189,47 @@ protected void AssertPublishAssets(
!string.Equals(a.AssetMode, StaticWebAsset.AssetModes.Reference))
.Select(a => Path.Combine(wwwRootFolder, a.ComputeTargetPath("", Path.DirectorySeparatorChar)));
- var existingFiles = wwwRootFiles.Concat(computedFiles.Select(f => PathTemplatizer(f, f.Identity, null) ?? f.Identity)).Concat(copyToPublishDirectoryFiles)
- .Distinct()
- .OrderBy(f => f, StringComparer.Ordinal)
- .ToArray();
+ var existingFiles = _baselineFactory.TemplatizeExpectedFiles(
+ wwwRootFiles
+ .Concat(computedFiles.Select(a => a.Identity))
+ .Concat(copyToPublishDirectoryFiles)
+ .Distinct()
+ .OrderBy(f => f, StringComparer.Ordinal)
+ .ToArray(),
+ TestContext.Current.NuGetCachePath,
+ ProjectDirectory.TestRoot,
+ intermediateOutputPath,
+ publishFolder);
if (!_generateBaselines)
{
- existingFiles = existingFiles.Select(f => Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate)).ToArray();
-
- var expected = LoadExpectedFilesBaseline(manifest.ManifestType, publishFolder, intermediateOutputPath, suffix, name);
- existingFiles.ShouldBeEquivalentTo(expected);
+ var expected = LoadExpectedFilesBaseline(manifest.ManifestType, suffix, name);
+ existingFiles.Should().BeEquivalentTo(expected);
}
else
{
- var templatizedFiles = TemplatizeExpectedFiles(
- wwwRootFiles
- .Concat(computedFiles.Select(f => PathTemplatizer(f, f.Identity, null) ?? f.Identity))
- .Concat(copyToPublishDirectoryFiles)
- .Distinct()
- .OrderBy(f => f, StringComparer.Ordinal)
- .ToArray(),
- TestContext.Current.NuGetCachePath,
- publishFolder,
- ProjectDirectory.TestRoot,
- intermediateOutputPath);
-
File.WriteAllText(
GetExpectedFilesPath(suffix, name, manifest.ManifestType),
- JsonSerializer.Serialize(templatizedFiles, BaselineSerializationOptions));
+ JsonSerializer.Serialize(existingFiles, BaselineSerializationOptions));
}
}
public string[] LoadExpectedFilesBaseline(
string type,
- string buildOrPublishPath,
- string intermediateOutputPath,
string suffix,
string name)
{
if (!_generateBaselines)
{
using var filesBaselineStream = GetExpectedFilesEmbeddedResource(suffix, name, type);
- return ApplyPathsToTemplatedFilePaths(
- JsonSerializer.Deserialize(filesBaselineStream),
- TestContext.Current.NuGetCachePath,
- buildOrPublishPath,
- ProjectDirectory.TestRoot,
- intermediateOutputPath)
- .ToArray();
+ return JsonSerializer.Deserialize(filesBaselineStream);
}
else
{
-
return Array.Empty();
}
}
- private IEnumerable TemplatizeExpectedFiles(
- IEnumerable files,
- string restorePath,
- string buildOrPublishFolder,
- string projectPath,
- string intermediateOutputPath)
- {
- foreach (var f in files)
- {
- var updated = Regex.Replace(f, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- updated = updated.Replace(restorePath, "${RestorePath}")
- .Replace(RuntimeVersion, "${RuntimeVersion}")
- .Replace(DefaultTfm, "${Tfm}")
- .Replace(DefaultPackageVersion, "${PackageVersion}")
- .Replace(buildOrPublishFolder, "${OutputPath}")
- .Replace(projectPath, "${ProjectPath}")
- .Replace(intermediateOutputPath, "${IntermediateOutputPath}")
- .Replace(Path.DirectorySeparatorChar, '\\');
- yield return updated;
- }
- }
-
- private IEnumerable ApplyPathsToTemplatedFilePaths(
- IEnumerable files,
- string restorePath,
- string buildOrPublishFolder,
- string projectPath,
- string intermediateOutputPath) =>
- files.Select(f => f.Replace("${RestorePath}", restorePath)
- .Replace("${RuntimeVersion}", RuntimeVersion)
- .Replace("${Tfm}", DefaultTfm)
- .Replace("${PackageVersion}", DefaultPackageVersion)
- .Replace("${OutputPath}", buildOrPublishFolder)
- .Replace("${IntermediateOutputPath}", intermediateOutputPath)
- .Replace("${ProjectPath}", projectPath)
- .Replace('\\', Path.DirectorySeparatorChar));
-
-
internal void AssertManifest(
StaticWebAssetsManifest manifest,
StaticWebAssetsManifest expected,
@@ -355,153 +238,17 @@ internal void AssertManifest(
{
if (!_generateBaselines)
{
- ApplyPathsToAssets(expected, ProjectDirectory.TestRoot, TestContext.Current.NuGetCachePath);
- ApplyTemplatizerToAssets(manifest);
- UpdateCustomPackageVersions(TestContext.Current.NuGetCachePath, manifest);
- //Many of the properties in the manifest contain full paths, to avoid flakiness on the tests, we don't compare the full paths.
- manifest.Version.Should().Be(expected.Version);
- manifest.Source.Should().Be(expected.Source);
- manifest.BasePath.Should().Be(expected.BasePath);
- manifest.Mode.Should().Be(expected.Mode);
- manifest.ManifestType.Should().Be(expected.ManifestType);
-
- manifest.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity)
- .Should()
- .BeEquivalentTo(expected.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity));
- manifest.DiscoveryPatterns.OrderBy(dp => dp.Name).ShouldBeEquivalentTo(expected.DiscoveryPatterns.OrderBy(dp => dp.Name));
-
- var manifestAssets = manifest.Assets.OrderBy(a => a.BasePath).ThenBy(a => a.RelativePath).ThenBy(a => a.AssetKind);
- var expectedAssets = expected.Assets.OrderBy(a => a.BasePath).ThenBy(a => a.RelativePath).ThenBy(a => a.AssetKind);
-
- // If there's a mismatch in the number of assets, just print the strict difference in the asset `Identity`
- if (manifestAssets.Count() != expectedAssets.Count())
- {
- ThrowAssetCountMismatchError(manifestAssets, expectedAssets);
- }
-
- // Otherwise, do a property level comparison of all assets
- var manifestAssetsEnumerator = manifestAssets.GetEnumerator();
- var expectedAssetsEnumerator = expectedAssets.GetEnumerator();
-
- var differences = new List();
-
- do
- {
- var manifestAsset = manifestAssetsEnumerator.Current;
- var expectedAsset = expectedAssetsEnumerator.Current;
-
- if (manifestAsset is null && expectedAsset is null)
- {
- continue;
- }
-
- var assetDifferences = new List();
-
- if (manifestAsset.Identity != expectedAsset.Identity)
- {
- assetDifferences.Add($"Expected manifest Identity of {expectedAsset.Identity} but found {manifestAsset.Identity}.");
- }
- if (manifestAsset.SourceType != expectedAsset.SourceType)
- {
- assetDifferences.Add($"Expected manifest SourceType of {expectedAsset.SourceType} but found {manifestAsset.SourceType}.");
- }
- if (manifestAsset.SourceId != expectedAsset.SourceId)
- {
- assetDifferences.Add($"Expected manifest SourceId of {expectedAsset.SourceId} but found {manifestAsset.SourceId}.");
- }
- if (manifestAsset.ContentRoot != expectedAsset.ContentRoot)
- {
- assetDifferences.Add($"Expected manifest ContentRoot of {expectedAsset.ContentRoot} but found {manifestAsset.ContentRoot}.");
- }
- if (manifestAsset.BasePath != expectedAsset.BasePath)
- {
- assetDifferences.Add($"Expected manifest BasePath of {expectedAsset.BasePath} but found {manifestAsset.BasePath}.");
- }
- if (manifestAsset.RelativePath != expectedAsset.RelativePath)
- {
- assetDifferences.Add($"Expected manifest RelativePath of {expectedAsset.RelativePath} but found {manifestAsset.RelativePath}.");
- }
- if (manifestAsset.AssetKind != expectedAsset.AssetKind)
- {
- assetDifferences.Add($"Expected manifest AssetKind of {expectedAsset.AssetKind} but found {manifestAsset.AssetKind}.");
- }
- if (manifestAsset.AssetMode != expectedAsset.AssetMode)
- {
- assetDifferences.Add($"Expected manifest AssetMode of {expectedAsset.AssetMode} but found {manifestAsset.AssetMode}.");
- }
- if (manifestAsset.AssetRole != expectedAsset.AssetRole)
- {
- assetDifferences.Add($"Expected manifest AssetRole of {expectedAsset.AssetRole} but found {manifestAsset.AssetRole}.");
- }
- if (manifestAsset.RelatedAsset != expectedAsset.RelatedAsset)
- {
- assetDifferences.Add($"Expected manifest RelatedAsset of {expectedAsset.RelatedAsset} but found {manifestAsset.RelatedAsset}.");
- }
- if (manifestAsset.AssetTraitName != expectedAsset.AssetTraitName)
- {
- assetDifferences.Add($"Expected manifest AssetTraitName of {expectedAsset.AssetTraitName} but found {manifestAsset.AssetTraitName}.");
- }
- if (manifestAsset.AssetTraitValue != expectedAsset.AssetTraitValue)
- {
- assetDifferences.Add($"Expected manifest AssetTraitValue of {expectedAsset.AssetTraitValue} but found {manifestAsset.AssetTraitValue}.");
- }
- if (manifestAsset.CopyToOutputDirectory != expectedAsset.CopyToOutputDirectory)
- {
- assetDifferences.Add($"Expected manifest CopyToOutputDirectory of {expectedAsset.CopyToOutputDirectory} but found {manifestAsset.CopyToOutputDirectory}.");
- }
- if (manifestAsset.CopyToPublishDirectory != expectedAsset.CopyToPublishDirectory)
- {
- assetDifferences.Add($"Expected manifest CopyToPublishDirectory of {expectedAsset.CopyToPublishDirectory} but found {manifestAsset.CopyToPublishDirectory}.");
- }
- if (manifestAsset.OriginalItemSpec != expectedAsset.OriginalItemSpec)
- {
- assetDifferences.Add($"Expected manifest OriginalItemSpec of {expectedAsset.OriginalItemSpec} but found {manifestAsset.OriginalItemSpec}.");
- }
-
- if (assetDifferences.Any())
- {
- differences.Add(@$"
-==================================================
-
-For {expectedAsset.Identity}:
-
-{string.Join(Environment.NewLine, assetDifferences)}
-
-==================================================");
- }
-
- } while (manifestAssetsEnumerator.MoveNext() && expectedAssetsEnumerator.MoveNext());
-
- differences.Should().BeEmpty(
- @$" the generated manifest should match the expected baseline.
-
-{BaselineGenerationInstructions}
-
-");
-
- static void ThrowAssetCountMismatchError(IEnumerable manifestAssets, IEnumerable expectedAssets)
- {
- var missingAssets = expectedAssets.Except(manifestAssets);
- var unexpectedAssets = manifestAssets.Except(expectedAssets);
-
- var differences = new List();
-
- if (missingAssets.Any())
- {
- differences.Add($@"The following expected assets weren't found in the manifest:
- {string.Join($"{Environment.NewLine}\t", missingAssets.Select(a => a.Identity))}");
- }
-
- if (unexpectedAssets.Any())
- {
- differences.Add($@"The following additional unexpected assets were found in the manifest:
- {string.Join($"{Environment.NewLine}\t", unexpectedAssets.Select(a => a.Identity))}");
- }
-
- throw new Exception($@"{string.Join(Environment.NewLine, differences)}
+ // We are going to compare the generated manifest with the current manifest.
+ // For that, we "templatize" the current manifest to avoid issues with hashes, versions, etc.
+ _baselineFactory.ToTemplate(
+ manifest,
+ ProjectDirectory.Path,
+ TestContext.Current.NuGetCachePath,
+ RuntimeVersion,
+ DefaultTfm,
+ DefaultPackageVersion);
-{BaselineGenerationInstructions}");
- }
+ _comparer.AssertManifest(manifest, expected);
}
else
{
@@ -528,147 +275,10 @@ private string GetExpectedFilesPath(string suffix, string name, string manifestT
private Stream GetExpectedFilesEmbeddedResource(string suffix, string name, string manifestType)
=> TestAssembly.GetManifestResourceStream(string.Join('.', EmbeddedResourcePrefix, $"{name}{(!string.IsNullOrEmpty(suffix) ? $"_{suffix}" : "")}.{manifestType}.files.json"));
- private void ApplyPathsToAssets(
- StaticWebAssetsManifest manifest,
- string projectRoot,
- string restorePath)
- {
- foreach (var asset in manifest.Assets)
- {
- asset.Identity = asset.Identity.Replace("${ProjectRoot}", projectRoot);
- asset.Identity = ReplaceRestorePath(restorePath, asset.Identity);
-
- asset.RelativePath = asset.RelativePath.Replace("${RuntimeVersion}", RuntimeVersion);
-
- asset.ContentRoot = asset.ContentRoot.Replace("${ProjectRoot}", projectRoot);
- asset.ContentRoot = ReplaceRestorePath(restorePath, asset.ContentRoot);
-
- asset.RelatedAsset = asset.RelatedAsset.Replace("${ProjectRoot}", projectRoot);
- asset.RelatedAsset = ReplaceRestorePath(restorePath, asset.RelatedAsset);
-
- asset.OriginalItemSpec = asset.OriginalItemSpec.Replace("${ProjectRoot}", projectRoot);
- asset.OriginalItemSpec = ReplaceRestorePath(restorePath, asset.OriginalItemSpec);
- }
-
- foreach (var discovery in manifest.DiscoveryPatterns)
- {
- discovery.ContentRoot = discovery.ContentRoot.Replace("${ProjectRoot}", projectRoot);
- discovery.ContentRoot = discovery.ContentRoot
- .Replace('\\', Path.DirectorySeparatorChar);
-
- discovery.Name = discovery.Name.Replace('\\', Path.DirectorySeparatorChar);
- discovery.Pattern.Replace('\\', Path.DirectorySeparatorChar);
- }
-
- foreach (var relatedConfiguration in manifest.ReferencedProjectsConfiguration)
- {
- relatedConfiguration.Identity = relatedConfiguration.Identity.Replace("${ProjectRoot}", projectRoot).Replace('\\', Path.DirectorySeparatorChar);
- }
-
- string ReplaceRestorePath(string restorePath, string property)
- {
- return property
- .Replace("${RestorePath}", restorePath)
- .Replace("${Tfm}", DefaultTfm)
- .Replace("${RuntimeVersion}", RuntimeVersion)
- .Replace("${PackageVersion}", DefaultPackageVersion)
- .Replace('\\', Path.DirectorySeparatorChar);
- }
- }
-
private string Templatize(StaticWebAssetsManifest manifest, string projectRoot, string restorePath)
{
- manifest.Hash = "__hash__";
- var assetsByIdentity = manifest.Assets.ToDictionary(a => a.Identity);
- foreach (var asset in manifest.Assets)
- {
- TemplatizeAsset(projectRoot, restorePath, asset);
-
- if (!string.IsNullOrEmpty(asset.RelatedAsset))
- {
- var relatedAsset = string.IsNullOrEmpty(asset.RelatedAsset) || !assetsByIdentity.TryGetValue(asset.RelatedAsset, out var related) ?
- null : related;
- if (relatedAsset != null)
- {
- TemplatizeAsset(projectRoot, restorePath, relatedAsset);
- }
- TemplatizeAsset(projectRoot, restorePath, asset);
- asset.RelatedAsset = PathTemplatizer(asset, asset.RelatedAsset, relatedAsset) ?? asset.RelatedAsset;
- }
-
- asset.OriginalItemSpec = asset.OriginalItemSpec.Replace(projectRoot, "${ProjectRoot}");
- asset.OriginalItemSpec = TemplatizeRestorePath(restorePath, asset.OriginalItemSpec);
- asset.OriginalItemSpec = PathTemplatizer(asset, asset.OriginalItemSpec, null) ?? asset.OriginalItemSpec;
- }
-
- foreach (var discovery in manifest.DiscoveryPatterns)
- {
- discovery.ContentRoot = discovery.ContentRoot.Replace(projectRoot, "${ProjectRoot}");
- discovery.ContentRoot = discovery.ContentRoot
- .Replace(Path.DirectorySeparatorChar, '\\');
- discovery.Name = discovery.Name.Replace(Path.DirectorySeparatorChar, '\\');
- discovery.Pattern = discovery.Pattern.Replace(Path.DirectorySeparatorChar, '\\');
- }
-
- foreach (var relatedManifest in manifest.ReferencedProjectsConfiguration)
- {
- relatedManifest.Identity = relatedManifest.Identity.Replace(projectRoot, "${ProjectRoot}").Replace(Path.DirectorySeparatorChar, '\\');
- }
-
- // Sor everything now to ensure we produce stable baselines independent of the machine they were generated on.
- Array.Sort(manifest.DiscoveryPatterns, (l, r) => StringComparer.Ordinal.Compare(l.Name, r.Name));
- Array.Sort(manifest.Assets, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity));
- Array.Sort(manifest.ReferencedProjectsConfiguration, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity));
+ _baselineFactory.ToTemplate(manifest, projectRoot, restorePath, RuntimeVersion, DefaultTfm, DefaultPackageVersion);
return JsonSerializer.Serialize(manifest, BaselineSerializationOptions);
-
- void TemplatizeAsset(string projectRoot, string restorePath, StaticWebAsset asset)
- {
- asset.Identity = asset.Identity.Replace(projectRoot, "${ProjectRoot}");
- asset.Identity = TemplatizeRestorePath(restorePath, asset.Identity);
- asset.Identity = PathTemplatizer(asset, asset.Identity, null) ?? asset.Identity;
-
- asset.RelativePath = Regex.Replace(asset.RelativePath, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- asset.RelativePath = asset.RelativePath.Replace(RuntimeVersion, "${RuntimeVersion}");
-
- asset.ContentRoot = asset.ContentRoot.Replace(projectRoot, "${ProjectRoot}");
- asset.ContentRoot = TemplatizeRestorePath(restorePath, asset.ContentRoot) + '\\';
-
- asset.RelatedAsset = asset.RelatedAsset.Replace(projectRoot, "${ProjectRoot}");
- asset.RelatedAsset = TemplatizeRestorePath(restorePath, asset.RelatedAsset);
- }
-
- string TemplatizeRestorePath(string restorePath, string property)
- {
- property = property
- .Replace(DefaultTfm, "${Tfm}")
- .Replace(restorePath, "${RestorePath}")
- .Replace(Path.DirectorySeparatorChar, '\\');
-
- var customPackageVersion = true;
- var segments = property.Split('\\', StringSplitOptions.RemoveEmptyEntries);
- for (var i = 0; i < segments.Length; i++)
- {
- ref var segment = ref segments[i];
- segment = Regex.Replace(segment, DotNetJSHashRegexPattern, DotNetJSHashTemplate);
- if (segment.Contains(RuntimeVersion))
- {
- segment = segment.Replace(RuntimeVersion, "${RuntimeVersion}");
- customPackageVersion = false;
- }
- if (segment == DefaultPackageVersion)
- {
- segment = "${PackageVersion}";
- customPackageVersion = false;
- }
- }
-
- if (segments.Length > 0 && segments[0] == "${RestorePath}" && customPackageVersion)
- {
- segments[2] = "[[CustomPackageVersion]]";
- }
-
- return string.Join('\\', segments);
- }
}
}
}
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs
index 498e8af930fc..72d4066afe24 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/JsModulesIntegrationTest.cs
@@ -90,7 +90,7 @@ public void Build_DiscoversJsModulesBasedOnPatterns()
buildManifest.DiscoveryPatterns.Should().BeEmpty();
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ buildManifest,
outputPath,
intermediateOutputPath);
}
@@ -117,7 +117,7 @@ public void Publish_PublishesBundleToTheRightLocation()
AssertManifest(manifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -213,12 +213,13 @@ public void BuildProjectWithReferences_IncorporatesInitializersFromClassLibrarie
var outputPath = build.GetOutputDirectory(DefaultTfm, "Debug").ToString();
var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.build.json");
+ var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ manifest,
LoadBuildManifest());
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ manifest,
outputPath,
intermediateOutputPath);
@@ -250,17 +251,19 @@ public void PublishProjectWithReferences_IncorporatesInitializersFromClassLibrar
var outputPath = publish.GetOutputDirectory(DefaultTfm, "Debug").ToString();
var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json");
+ var buildManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ buildManifest,
LoadBuildManifest());
var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ publishManifest,
outputPath,
intermediateOutputPath);
@@ -311,12 +314,13 @@ public void PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitial
LoadBuildManifest());
var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
+ var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ manifest,
LoadPublishManifest());
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(finalPath)),
+ manifest,
outputPath,
intermediateOutputPath);
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs
index 3398c992206e..cdff42875ac1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/ScopedCssIntegrationTests.cs
@@ -425,12 +425,13 @@ public void BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles()
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json");
new FileInfo(finalPath).Should().Exist();
+ var buildManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json")));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ buildManifest,
LoadBuildManifest());
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ buildManifest,
outputPath,
intermediateOutputPath);
@@ -510,12 +511,13 @@ public void ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions()
var finalPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(finalPath).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json")));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"))),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.publish.json"))),
+ publishManifest,
outputPath,
intermediateOutputPath);
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs
new file mode 100644
index 000000000000..4fbb015ac931
--- /dev/null
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineComparer.cs
@@ -0,0 +1,251 @@
+// Copyright (c) .NET Foundation and contributors. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using FluentAssertions;
+using Microsoft.AspNetCore.Razor.Tasks;
+
+namespace Microsoft.NET.Sdk.Razor.Tests;
+
+public class StaticWebAssetsBaselineComparer
+{
+ private static readonly string BaselineGenerationInstructions =
+ @"If the difference in baselines is expected, please re-generate the baselines.
+Note, baseline generation must be done on a Windows device.
+Start by ensuring you're dogfooding the SDK from the current branch (dotnet --version should be '*.0.0-dev').
+ If you're not on the dogfood sdk, from the root of the repository run:
+ 1. dotnet clean
+ 2. .\restore.cmd
+ 3. .\build.cmd
+ 4. .\eng\dogfood.cmd
+
+Then, using the dogfood SDK run the .\src\RazorSdk\update-test-baselines.ps1 script.";
+
+ public static StaticWebAssetsBaselineComparer Instance { get; } = new();
+
+ internal void AssertManifest(StaticWebAssetsManifest expected, StaticWebAssetsManifest manifest)
+ {
+ //Many of the properties in the manifest contain full paths, to avoid flakiness on the tests, we don't compare the full paths.
+ manifest.Version.Should().Be(expected.Version);
+ manifest.Source.Should().Be(expected.Source);
+ manifest.BasePath.Should().Be(expected.BasePath);
+ manifest.Mode.Should().Be(expected.Mode);
+ manifest.ManifestType.Should().Be(expected.ManifestType);
+
+ manifest.ReferencedProjectsConfiguration.Should().HaveSameCount(expected.ReferencedProjectsConfiguration);
+
+ // Relax the check for project reference configuration items see
+ // https://github.com/dotnet/sdk/pull/27381#issuecomment-1228764471
+ // for details.
+ //manifest.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity)
+ // .Should()
+ // .BeEquivalentTo(expected.ReferencedProjectsConfiguration.OrderBy(cm => cm.Identity));
+
+ manifest.DiscoveryPatterns.OrderBy(dp => dp.Name).Should().BeEquivalentTo(expected.DiscoveryPatterns.OrderBy(dp => dp.Name));
+
+ var manifestAssets = manifest.Assets
+ .OrderBy(a => a.BasePath)
+ .ThenBy(a => a.RelativePath)
+ .ThenBy(a => a.AssetKind)
+ .GroupBy(a => GetGroup(a))
+ .ToDictionary(a => a.Key, a => a.ToArray());
+
+ var expectedAssets = expected.Assets
+ .OrderBy(a => a.BasePath)
+ .ThenBy(a => a.RelativePath)
+ .ThenBy(a => a.AssetKind)
+ .GroupBy(a => GetGroup(a))
+ .ToDictionary(a => a.Key, a => a.ToArray());
+
+ foreach (var (group, manifestAssetsGroup) in manifestAssets)
+ {
+ var expectedAssetsGroup = expectedAssets[group];
+ CompareGroup(group, manifestAssetsGroup, expectedAssetsGroup);
+ }
+ }
+
+ protected virtual void CompareGroup(string group, StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets)
+ {
+ var comparisonMode = CompareAssetCounts(group, manifestAssets, expectedAssets);
+
+ // Otherwise, do a property level comparison of all assets
+ switch (comparisonMode)
+ {
+ case GroupComparisonMode.Exact:
+ break;
+ case GroupComparisonMode.AllowAdditionalAssets:
+ break;
+ default:
+ break;
+ }
+
+ var differences = new List();
+ var assetDifferences = new List();
+ var groupLength = Math.Min(manifestAssets.Length, expectedAssets.Length);
+ for (var i = 0; i < groupLength; i++)
+ {
+ var manifestAsset = manifestAssets[i];
+ var expectedAsset = expectedAssets[i];
+
+ ComputeAssetDifferences(assetDifferences, manifestAsset, expectedAsset);
+
+ if (assetDifferences.Any())
+ {
+ differences.Add(@$"
+==================================================
+
+For {expectedAsset.Identity}:
+
+{string.Join(Environment.NewLine, assetDifferences)}
+
+==================================================");
+ }
+
+ assetDifferences.Clear();
+ }
+
+ differences.Should().BeEmpty(
+ @$" the generated manifest should match the expected baseline.
+
+{BaselineGenerationInstructions}
+
+");
+ }
+
+ private GroupComparisonMode CompareAssetCounts(string group, StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets)
+ {
+ var comparisonMode = GetGroupComparisonMode(group);
+
+ // If there's a mismatch in the number of assets, just print the strict difference in the asset `Identity`
+ switch (comparisonMode)
+ {
+ case GroupComparisonMode.Exact:
+ if (manifestAssets.Length != expectedAssets.Length)
+ {
+ ThrowAssetCountMismatchError(manifestAssets, expectedAssets);
+ }
+ break;
+ case GroupComparisonMode.AllowAdditionalAssets:
+ if (expectedAssets.Except(manifestAssets).Any())
+ {
+ ThrowAssetCountMismatchError(manifestAssets, expectedAssets);
+ }
+ break;
+ default:
+ break;
+ }
+
+ return comparisonMode;
+
+ static void ThrowAssetCountMismatchError(StaticWebAsset[] manifestAssets, StaticWebAsset[] expectedAssets)
+ {
+ var missingAssets = expectedAssets.Except(manifestAssets);
+ var unexpectedAssets = manifestAssets.Except(expectedAssets);
+
+ var differences = new List();
+
+ if (missingAssets.Any())
+ {
+ differences.Add($@"The following expected assets weren't found in the manifest:
+ {string.Join($"{Environment.NewLine}\t", missingAssets.Select(a => a.Identity))}");
+ }
+
+ if (unexpectedAssets.Any())
+ {
+ differences.Add($@"The following additional unexpected assets were found in the manifest:
+ {string.Join($"{Environment.NewLine}\t", unexpectedAssets.Select(a => a.Identity))}");
+ }
+
+ throw new Exception($@"{string.Join(Environment.NewLine, differences)}
+
+{BaselineGenerationInstructions}");
+ }
+ }
+
+ protected virtual GroupComparisonMode GetGroupComparisonMode(string group)
+ {
+ return GroupComparisonMode.Exact;
+ }
+
+ private static void ComputeAssetDifferences(List assetDifferences, StaticWebAsset manifestAsset, StaticWebAsset expectedAsset)
+ {
+ if (manifestAsset.Identity != expectedAsset.Identity)
+ {
+ assetDifferences.Add($"Expected manifest Identity of {expectedAsset.Identity} but found {manifestAsset.Identity}.");
+ }
+ if (manifestAsset.SourceType != expectedAsset.SourceType)
+ {
+ assetDifferences.Add($"Expected manifest SourceType of {expectedAsset.SourceType} but found {manifestAsset.SourceType}.");
+ }
+ if (manifestAsset.SourceId != expectedAsset.SourceId)
+ {
+ assetDifferences.Add($"Expected manifest SourceId of {expectedAsset.SourceId} but found {manifestAsset.SourceId}.");
+ }
+ if (manifestAsset.ContentRoot != expectedAsset.ContentRoot)
+ {
+ assetDifferences.Add($"Expected manifest ContentRoot of {expectedAsset.ContentRoot} but found {manifestAsset.ContentRoot}.");
+ }
+ if (manifestAsset.BasePath != expectedAsset.BasePath)
+ {
+ assetDifferences.Add($"Expected manifest BasePath of {expectedAsset.BasePath} but found {manifestAsset.BasePath}.");
+ }
+ if (manifestAsset.RelativePath != expectedAsset.RelativePath)
+ {
+ assetDifferences.Add($"Expected manifest RelativePath of {expectedAsset.RelativePath} but found {manifestAsset.RelativePath}.");
+ }
+ if (manifestAsset.AssetKind != expectedAsset.AssetKind)
+ {
+ assetDifferences.Add($"Expected manifest AssetKind of {expectedAsset.AssetKind} but found {manifestAsset.AssetKind}.");
+ }
+ if (manifestAsset.AssetMode != expectedAsset.AssetMode)
+ {
+ assetDifferences.Add($"Expected manifest AssetMode of {expectedAsset.AssetMode} but found {manifestAsset.AssetMode}.");
+ }
+ if (manifestAsset.AssetRole != expectedAsset.AssetRole)
+ {
+ assetDifferences.Add($"Expected manifest AssetRole of {expectedAsset.AssetRole} but found {manifestAsset.AssetRole}.");
+ }
+ if (manifestAsset.RelatedAsset != expectedAsset.RelatedAsset)
+ {
+ assetDifferences.Add($"Expected manifest RelatedAsset of {expectedAsset.RelatedAsset} but found {manifestAsset.RelatedAsset}.");
+ }
+ if (manifestAsset.AssetTraitName != expectedAsset.AssetTraitName)
+ {
+ assetDifferences.Add($"Expected manifest AssetTraitName of {expectedAsset.AssetTraitName} but found {manifestAsset.AssetTraitName}.");
+ }
+ if (manifestAsset.AssetTraitValue != expectedAsset.AssetTraitValue)
+ {
+ assetDifferences.Add($"Expected manifest AssetTraitValue of {expectedAsset.AssetTraitValue} but found {manifestAsset.AssetTraitValue}.");
+ }
+ if (manifestAsset.CopyToOutputDirectory != expectedAsset.CopyToOutputDirectory)
+ {
+ assetDifferences.Add($"Expected manifest CopyToOutputDirectory of {expectedAsset.CopyToOutputDirectory} but found {manifestAsset.CopyToOutputDirectory}.");
+ }
+ if (manifestAsset.CopyToPublishDirectory != expectedAsset.CopyToPublishDirectory)
+ {
+ assetDifferences.Add($"Expected manifest CopyToPublishDirectory of {expectedAsset.CopyToPublishDirectory} but found {manifestAsset.CopyToPublishDirectory}.");
+ }
+ if (manifestAsset.OriginalItemSpec != expectedAsset.OriginalItemSpec)
+ {
+ assetDifferences.Add($"Expected manifest OriginalItemSpec of {expectedAsset.OriginalItemSpec} but found {manifestAsset.OriginalItemSpec}.");
+ }
+ }
+
+ protected virtual string GetGroup(StaticWebAsset asset)
+ {
+ return Path.GetExtension(asset.Identity.TrimEnd(']'));
+ }
+}
+
+public enum GroupComparisonMode
+{
+ // We require the same number of assets in a group for the baseline and the template.
+ Exact,
+
+ // We won't fail when we check against the baseline if additional assets are present for a group.
+ AllowAdditionalAssets
+}
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs
new file mode 100644
index 000000000000..59f0ed397002
--- /dev/null
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselineFactory.cs
@@ -0,0 +1,280 @@
+// Copyright (c) .NET Foundation and contributors. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using Microsoft.AspNetCore.Razor.Tasks;
+
+namespace Microsoft.NET.Sdk.Razor.Tests;
+public class StaticWebAssetsBaselineFactory
+{
+ public static StaticWebAssetsBaselineFactory Instance { get; } = new();
+
+ public IList KnownExtensions { get; } = new List()
+ {
+ // Keep this list of most specific to less specific
+ ".dll.gz",
+ ".dll.br",
+ ".dll",
+ ".wasm.gz",
+ ".wasm.br",
+ ".wasm",
+ ".js.gz",
+ ".js.br",
+ ".js",
+ ".html",
+ ".pdb",
+ };
+
+ public IList KnownFilePrefixesWithHashOrVersion { get; } = new List()
+ {
+ "dotnet"
+ };
+
+ public void ToTemplate(
+ StaticWebAssetsManifest manifest,
+ string projectRoot,
+ string restorePath,
+ string runtimeVersion,
+ string defaultTfm,
+ string defaultPackageVersion)
+ {
+ manifest.Hash = "__hash__";
+ var assetsByIdentity = manifest.Assets.ToDictionary(a => a.Identity);
+ foreach (var asset in manifest.Assets)
+ {
+ TemplatizeAsset(projectRoot, restorePath, asset);
+ if (asset.AssetTraitName == "Content-Encoding")
+ {
+ var relativePath = asset.RelativePath.Replace('/', Path.DirectorySeparatorChar);
+ var identity = asset.Identity.Replace('\\', Path.DirectorySeparatorChar);
+ var originalItemSpec = asset.OriginalItemSpec.Replace('\\', Path.DirectorySeparatorChar);
+
+ asset.Identity = Path.Combine(Path.GetDirectoryName(identity), relativePath);
+ asset.Identity = asset.Identity.Replace(Path.DirectorySeparatorChar, '\\');
+ asset.OriginalItemSpec = Path.Combine(Path.GetDirectoryName(originalItemSpec), relativePath);
+ asset.OriginalItemSpec = asset.OriginalItemSpec.Replace(Path.DirectorySeparatorChar, '\\');
+ }
+ else if ((asset.Identity.EndsWith(".gz") || asset.Identity.EndsWith(".br"))
+ && asset.AssetTraitName == "" && asset.RelatedAsset == "")
+ {
+ // Old .NET 5.0 implementation
+ var identity = asset.Identity.Replace('\\', Path.DirectorySeparatorChar);
+ var originalItemSpec = asset.OriginalItemSpec.Replace('\\', Path.DirectorySeparatorChar);
+
+ asset.Identity = Path.Combine(Path.GetDirectoryName(identity), Path.GetFileName(originalItemSpec) + Path.GetExtension(identity))
+ .Replace(Path.DirectorySeparatorChar, '\\');
+ }
+ }
+
+ foreach (var discovery in manifest.DiscoveryPatterns)
+ {
+ discovery.ContentRoot = discovery.ContentRoot.Replace(projectRoot, "${ProjectPath}");
+ discovery.ContentRoot = discovery.ContentRoot.Replace(Path.DirectorySeparatorChar, '\\');
+
+ discovery.Name = discovery.Name.Replace(Path.DirectorySeparatorChar, '\\');
+ discovery.Pattern = discovery.Pattern.Replace(Path.DirectorySeparatorChar, '\\');
+ }
+
+ foreach (var relatedManifest in manifest.ReferencedProjectsConfiguration)
+ {
+ relatedManifest.Identity = relatedManifest.Identity.Replace(projectRoot, "${ProjectPath}").Replace(Path.DirectorySeparatorChar, '\\');
+ }
+
+ // Sor everything now to ensure we produce stable baselines independent of the machine they were generated on.
+ Array.Sort(manifest.DiscoveryPatterns, (l, r) => StringComparer.Ordinal.Compare(l.Name, r.Name));
+ Array.Sort(manifest.Assets, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity));
+ Array.Sort(manifest.ReferencedProjectsConfiguration, (l, r) => StringComparer.Ordinal.Compare(l.Identity, r.Identity));
+ }
+
+ private void TemplatizeAsset(string projectRoot, string restorePath, StaticWebAsset asset)
+ {
+ asset.Identity = TemplatizeFilePath(
+ asset.Identity,
+ restorePath,
+ projectRoot,
+ null,
+ null);
+
+ asset.RelativePath = TemplatizeFilePath(
+ asset.RelativePath,
+ null,
+ null,
+ null,
+ null).Replace('\\', '/');
+
+ asset.ContentRoot = TemplatizeFilePath(
+ asset.ContentRoot,
+ restorePath,
+ projectRoot,
+ null,
+ null);
+
+ asset.RelatedAsset = TemplatizeFilePath(
+ asset.RelatedAsset,
+ restorePath,
+ projectRoot,
+ null,
+ null);
+
+ asset.OriginalItemSpec = TemplatizeFilePath(
+ asset.OriginalItemSpec,
+ restorePath,
+ projectRoot,
+ null,
+ null);
+ }
+
+ internal IEnumerable TemplatizeExpectedFiles(
+ IEnumerable files,
+ string restorePath,
+ string projectPath,
+ string intermediateOutputPath,
+ string buildOrPublishFolder)
+ {
+ foreach (var file in files)
+ {
+ var updated = TemplatizeFilePath(
+ file,
+ restorePath,
+ projectPath,
+ intermediateOutputPath,
+ buildOrPublishFolder);
+
+ yield return updated;
+ }
+ }
+
+ public string TemplatizeFilePath(
+ string file,
+ string restorePath,
+ string projectPath,
+ string intermediateOutputPath,
+ string buildOrPublishFolder)
+ {
+ var updated = file switch
+ {
+ var processed when file.StartsWith("$") => processed,
+ var fromBuildOrPublishPath when buildOrPublishFolder is not null && file.StartsWith(buildOrPublishFolder) =>
+ TemplatizeBuildOrPublishPath(buildOrPublishFolder, fromBuildOrPublishPath),
+ var fromIntermediateOutputPath when intermediateOutputPath is not null && file.StartsWith(intermediateOutputPath) =>
+ TemplatizeIntermediatePath(intermediateOutputPath, fromIntermediateOutputPath),
+ var fromPackage when restorePath is not null && file.StartsWith(restorePath) =>
+ TemplatizeNugetPath(restorePath, fromPackage),
+ var fromProject when projectPath is not null && file.StartsWith(projectPath) =>
+ TemplatizeProjectPath(projectPath, fromProject),
+ _ =>
+ ReplaceSegments(file, (i, segments) => i switch
+ {
+ 2 when segments[0] is "obj" or "bin" => "${Tfm}",
+ var last when i == segments.Length - 1 => RemovePossibleHash(segments[last]),
+ _ => segments[i]
+ })
+ };
+
+ return updated.Replace('/', '\\');
+ }
+
+ private string TemplatizeBuildOrPublishPath(string outputPath, string file)
+ {
+ file = file.Replace(outputPath, "${OutputPath}")
+ .Replace('\\', '/');
+
+ file = ReplaceSegments(file, (i, segments) => i switch
+ {
+ _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]),
+ _ => segments[i],
+ });
+
+ return file;
+ }
+
+ private string TemplatizeIntermediatePath(string intermediatePath, string file)
+ {
+ file = file.Replace(intermediatePath, "${IntermediateOutputPath}")
+ .Replace('\\', '/');
+
+ file = ReplaceSegments(file, (i, segments) => i switch
+ {
+ 3 when segments[1] is "obj" or "bin" => "${Tfm}",
+ _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]),
+ _ => segments[i]
+ });
+
+ return file;
+ }
+
+ private string TemplatizeProjectPath(string projectPath, string file)
+ {
+ file = file.Replace(projectPath, "${ProjectPath}")
+ .Replace('\\', '/');
+
+ file = ReplaceSegments(file, (i, segments) => i switch
+ {
+ 3 when segments[1] is "obj" or "bin" => "${Tfm}",
+ 4 when segments[2] is "obj" or "bin" => "${Tfm}",
+ _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]),
+ _ => segments[i]
+ });
+
+ return file;
+ }
+
+ private string TemplatizeNugetPath(string restorePath, string file)
+ {
+ file = file.Replace(restorePath, "${RestorePath}")
+ .Replace('\\', '/');
+ if (file.Contains("runtimes"))
+ {
+ file = ReplaceSegments(file, (i, segments) => i switch
+ {
+ 2 => "${RuntimeVersion}",
+ 6 when !file.Contains("native") => "${PackageTfm}",
+ _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]),
+ _ => segments[i],
+ });
+ }
+ else
+ {
+ file = ReplaceSegments(file, (i, segments) => i switch
+ {
+ 2 => "${PackageVersion}",
+ 4 => "${PackageTfm}",
+ _ when i == segments.Length - 1 => RemovePossibleHash(segments[i]),
+ _ => segments[i],
+ });
+ }
+
+ return file;
+ }
+
+ private static string ReplaceSegments(string file, Func selector)
+ {
+ var segments = file.Split('\\', '/');
+ var newSegments = new List();
+
+ // Segments have the following shape `${RestorePath}/PackageName/PackageVersion/lib/Tfm/dll`.
+ // We want to replace PackageVersion and Tfm with tokens so that they do not cause issues.
+ for (var i = 0; i < segments.Length; i++)
+ {
+ newSegments.Add(selector(i, segments));
+ }
+
+ return string.Join(Path.DirectorySeparatorChar, newSegments);
+ }
+
+ private string RemovePossibleHash(string fileNameAndExtension)
+ {
+ var filename = KnownFilePrefixesWithHashOrVersion.FirstOrDefault(p => fileNameAndExtension.StartsWith(p));
+ var extension = KnownExtensions.FirstOrDefault(f => fileNameAndExtension.EndsWith(f, StringComparison.OrdinalIgnoreCase));
+ if (filename != null && extension != null)
+ {
+ fileNameAndExtension = filename + extension;
+ }
+
+ return fileNameAndExtension;
+ }
+}
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json
index e6f7a3c07370..72088b5f49ba 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.files.json
@@ -1,3 +1,3 @@
[
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_CorrectlyBundlesScopedCssFiles.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
index e6f7a3c07370..72088b5f49ba 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
@@ -1,3 +1,3 @@
[
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json
index 31ada6d4ec75..d6709aec24ea 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.files.json
@@ -1,5 +1,4 @@
[
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\AppWithPackageAndP2PReference.modules.json",
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json
index 8deb42a1590e..f72de6688f1c 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_IncorporatesInitializersFromClassLibraries.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -98,10 +98,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.modules.json",
"AssetKind": "Build",
@@ -115,10 +115,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\ClassLibrary.lib.module.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\ClassLibrary.lib.module.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.lib.module.js",
"AssetKind": "All",
@@ -166,10 +166,10 @@
"OriginalItemSpec": "wwwroot\\ClassLibrary.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -183,10 +183,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -200,10 +200,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -214,15 +214,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -231,15 +231,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -248,13 +248,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -265,7 +265,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json
index e6f7a3c07370..72088b5f49ba 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.files.json
@@ -1,3 +1,3 @@
[
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCopiesItToOutputFolder_NoDependencies.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json
index e6f7a3c07370..72088b5f49ba 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.files.json
@@ -1,3 +1,3 @@
[
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
index ff97f4b5cb5b..96f1f0a89559 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 1,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 1,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -78,13 +78,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -146,15 +146,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -163,15 +163,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,13 +180,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -197,7 +197,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json
index d6892718a141..477c670be47f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.files.json
@@ -1,4 +1,4 @@
[
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json
index 86194d84495d..f190f8e85a21 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DiscoversJsModulesBasedOnPatterns.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\Components\\Pages\\Counter.razor.js",
+ "Identity": "${ProjectPath}\\Components\\Pages\\Counter.razor.js",
"SourceId": "ComponentApp",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\",
+ "ContentRoot": "${ProjectPath}\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "Components/Pages/Counter.razor.js",
"AssetKind": "All",
@@ -26,10 +26,10 @@
"OriginalItemSpec": "Components\\Pages\\Counter.razor.js"
},
{
- "Identity": "${ProjectRoot}\\Pages\\Index.cshtml.js",
+ "Identity": "${ProjectPath}\\Pages\\Index.cshtml.js",
"SourceId": "ComponentApp",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\",
+ "ContentRoot": "${ProjectPath}\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "Pages/Index.cshtml.js",
"AssetKind": "All",
@@ -43,10 +43,10 @@
"OriginalItemSpec": "Pages\\Index.cshtml.js"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -57,13 +57,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -74,7 +74,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_DoesNotUpdateManifest_WhenHasNotChanged.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
index d6892718a141..477c670be47f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.files.json
@@ -1,4 +1,4 @@
[
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_GeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json
index d6892718a141..477c670be47f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.files.json
@@ -1,4 +1,4 @@
[
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json
index d6892718a141..477c670be47f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.files.json
@@ -1,4 +1,4 @@
[
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json
index 290b644d3340..687f418e61a3 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Build_UpdatesManifest_WhenFilesChange_Updated.Build.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "ComponentApp\\wwwroot",
"Source": "ComponentApp",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "_content/ComponentApp",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -31,13 +31,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -48,13 +48,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\index.html",
+ "Identity": "${ProjectPath}\\wwwroot\\index.html",
"SourceId": "ComponentApp",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "index.html",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Clean_RemovesManifestFrom_BuildAndIntermediateOutput.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 7e34fd20114e..498f2cadb7f2 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index 9253d86e0fbf..a3fd32397f7d 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -9,5 +9,15 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 93660bdded19..5e57ffe3df13 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json
index 77faa8a165fe..365543dbf66e 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.build.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.build.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "Build",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.build.js"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -98,10 +98,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.modules.json",
"AssetKind": "Build",
@@ -115,10 +115,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -166,10 +166,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -183,10 +183,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -197,15 +197,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -214,15 +214,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -231,13 +231,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -248,7 +248,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json
index 659171f1258b..4c644e2b9842 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.files.json
@@ -1,4 +1,5 @@
[
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.modules.json",
"${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
"${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js",
@@ -10,7 +11,5 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
- "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\AppWithPackageAndP2PReference.modules.json",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json
index f66c17d6c883..816fcc595e93 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_DifferentBuildAndPublish_LibraryInitializers.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "Publish",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -98,10 +98,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.modules.json",
"AssetKind": "Publish",
@@ -115,10 +115,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -166,10 +166,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -183,10 +183,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -197,15 +197,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -214,15 +214,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -231,13 +231,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -248,7 +248,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index b4b84db2749b..f4c8f66bd27c 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -9,5 +9,15 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 67e270603438..1caaec7c0d22 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json
index 566ea8a9fa23..7ab89378036f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -98,10 +98,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.modules.json",
"AssetKind": "Build",
@@ -115,10 +115,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.build.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "All",
@@ -166,10 +166,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -183,10 +183,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -200,10 +200,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -214,15 +214,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -231,15 +231,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -248,13 +248,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -265,7 +265,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json
index 12fca64e50c6..9902bb2c4778 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.files.json
@@ -13,5 +13,18 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
"${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.modules.json",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\AnotherClassLib.lib.module.js",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\AnotherClassLib.lib.module.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json
index 59b0a7025f45..1f2a8cfb4740 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_IncorporatesInitializersFromClassLibrariesAndPublishesAssetsToTheRightLocation.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -98,10 +98,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.modules.json",
"AssetKind": "Publish",
@@ -115,10 +115,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\AnotherClassLib.lib.module.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "AnotherClassLib.lib.module.js",
"AssetKind": "All",
@@ -166,10 +166,10 @@
"OriginalItemSpec": "wwwroot\\AnotherClassLib.lib.module.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -183,10 +183,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -200,10 +200,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -214,15 +214,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -231,15 +231,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -248,13 +248,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -265,7 +265,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index b4b84db2749b..f6aca7d96983 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -1,4 +1,5 @@
[
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
"${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
@@ -8,6 +9,5 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
- "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 67e270603438..1caaec7c0d22 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 4cb2484664e8..b3cd43f59859 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index b4b84db2749b..f4c8f66bd27c 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -9,5 +9,15 @@
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
"${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 67e270603438..1caaec7c0d22 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 2,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 2,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "ComputeReferencedStaticWebAssetsPublishManifest;GetCurrentProjectPublishStaticWebAssetItems",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -64,10 +64,10 @@
"OriginalItemSpec": "wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -81,10 +81,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -132,10 +132,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -149,10 +149,10 @@
"OriginalItemSpec": "wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
index ff97f4b5cb5b..96f1f0a89559 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 1,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 1,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -78,13 +78,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -146,15 +146,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -163,15 +163,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,13 +180,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -197,7 +197,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json
index 522862b93012..db44ba205551 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.files.json
@@ -12,5 +12,14 @@
"${OutputPath}\\wwwroot\\js\\project-direct-dep.js",
"${OutputPath}\\wwwroot\\js\\project-transitive-dep.js",
"${OutputPath}\\wwwroot\\js\\project-transitive-dep.v4.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json
index d4683023ae59..97907027bd93 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 1,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 1,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -78,13 +78,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -146,15 +146,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -163,15 +163,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,13 +180,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -197,7 +197,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index c93f96002a92..5f31368b670b 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -1,5 +1,6 @@
[
"${OutputPath}\\wwwroot\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\ComponentApp.styles.css"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 7b4ed2b62568..f40268d995ee 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index c93f96002a92..beb43eeda9e8 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -1,5 +1,5 @@
[
- "${OutputPath}\\wwwroot\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\ComponentApp.styles.css"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 7b4ed2b62568..f40268d995ee 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
index c93f96002a92..5f31368b670b 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.files.json
@@ -1,5 +1,6 @@
[
"${OutputPath}\\wwwroot\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\ComponentApp.styles.css"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
index 7b4ed2b62568..f40268d995ee 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPublishAssets.Publish.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json
index 3cd36eefc774..34086ef82717 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.files.json
@@ -4,5 +4,8 @@
"${OutputPath}\\wwwroot\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
- "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+ "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\ComponentApp.lib.module.js",
+ "${OutputPath}\\wwwroot\\ComponentApp.modules.json",
+ "${OutputPath}\\wwwroot\\ComponentApp.styles.css"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json
index d5ca834ea522..c4a5e94f358e 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Publish_PublishesBundleToTheRightLocation.Publish.staticwebassets.json
@@ -10,17 +10,17 @@
{
"Name": "ComponentApp\\wwwroot",
"Source": "ComponentApp",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "_content/ComponentApp",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\jsmodules\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\jsmodules\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.modules.json",
"AssetKind": "Publish",
@@ -34,10 +34,10 @@
"OriginalItemSpec": "obj\\Debug\\${Tfm}\\jsmodules\\jsmodules.publish.manifest.json"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -48,13 +48,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -65,13 +65,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\wwwroot\\ComponentApp.lib.module.js",
+ "Identity": "${ProjectPath}\\wwwroot\\ComponentApp.lib.module.js",
"SourceId": "ComponentApp",
"SourceType": "Discovered",
- "ContentRoot": "${ProjectRoot}\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\wwwroot\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.lib.module.js",
"AssetKind": "All",
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json
index d6892718a141..477c670be47f 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.files.json
@@ -1,4 +1,4 @@
[
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
-]
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json
index 736470077589..9c56f2cfd1f1 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder_Rebuild.Build.staticwebassets.json
@@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.styles.css",
"AssetKind": "All",
@@ -23,13 +23,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\ComponentApp.styles.css"
},
{
- "Identity": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
+ "Identity": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css",
"SourceId": "ComponentApp",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ComponentApp",
"RelativePath": "ComponentApp.bundle.scp.css",
"AssetKind": "All",
@@ -40,7 +40,7 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ComponentApp.bundle.scp.css"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json
index e6f7a3c07370..4a54f4a20ae8 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.files.json
@@ -1,3 +1,3 @@
[
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${IntermediateOutputPath}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json
index fb2931c9c71a..baff3e05ed34 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_IsBackwardsCompatible_WithPreviousVersions.Build.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 1,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 1,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -78,13 +78,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json
index 7c7d3ccea149..d56454992b34 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.files.json
@@ -13,5 +13,15 @@
"${OutputPath}\\wwwroot\\js\\project-direct-dep.js",
"${OutputPath}\\wwwroot\\js\\project-transitive-dep.js",
"${OutputPath}\\wwwroot\\js\\project-transitive-dep.v4.js",
- "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
-]
+ "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\AppWithPackageAndP2PReference.styles.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\AnotherClassLib\\js\\project-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\ClassLibrary.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\ClassLibrary\\js\\project-transitive-dep.v4.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\PackageLibraryDirectDependency.bundle.scp.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\css\\site.css",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryDirectDependency\\js\\pkg-direct-dep.js",
+ "${OutputPath}\\wwwroot\\_content\\PackageLibraryTransitiveDependency\\js\\pkg-transitive-dep.js"
+]
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json
index f7fd689f42c3..90b6a3ebafa5 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsBaselines/ScopedCss_PublishIsBackwardsCompatible_WithPreviousVersions.Publish.staticwebassets.json
@@ -7,7 +7,7 @@
"ManifestType": "Publish",
"ReferencedProjectsConfiguration": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\AnotherClassLib.csproj",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\AnotherClassLib.csproj",
"Version": 1,
"Source": "AnotherClassLib",
"GetPublishAssetsTargets": "",
@@ -18,7 +18,7 @@
"AdditionalBuildPropertiesToRemove": "WebPublishProfileFile;TargetFramework;RuntimeIdentifier"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\ClassLibrary.csproj",
+ "Identity": "${ProjectPath}\\ClassLibrary\\ClassLibrary.csproj",
"Version": 1,
"Source": "ClassLibrary",
"GetPublishAssetsTargets": "",
@@ -33,24 +33,24 @@
{
"Name": "AnotherClassLib\\wwwroot",
"Source": "AnotherClassLib",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"Pattern": "**"
},
{
"Name": "ClassLibrary\\wwwroot",
"Source": "ClassLibrary",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"Pattern": "**"
}
],
"Assets": [
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "css/site.css",
"AssetKind": "All",
@@ -61,13 +61,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\css\\site.css"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\css\\site.css"
},
{
- "Identity": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
+ "Identity": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js",
"SourceId": "AnotherClassLib",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\AnotherClassLib\\wwwroot\\",
"BasePath": "_content/AnotherClassLib",
"RelativePath": "js/project-direct-dep.js",
"AssetKind": "All",
@@ -78,13 +78,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\AnotherClassLib\\wwwroot\\js\\project-direct-dep.js"
},
{
- "Identity": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
+ "Identity": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css",
"SourceId": "AppWithPackageAndP2PReference",
"SourceType": "Computed",
- "ContentRoot": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
+ "ContentRoot": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\",
"BasePath": "_content/AppWithPackageAndP2PReference",
"RelativePath": "AppWithPackageAndP2PReference.styles.css",
"AssetKind": "All",
@@ -95,13 +95,13 @@
"AssetTraitValue": "ApplicationBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
+ "OriginalItemSpec": "${ProjectPath}\\AppWithPackageAndP2PReference\\obj\\Debug\\${Tfm}\\scopedcss\\bundle\\AppWithPackageAndP2PReference.styles.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
+ "Identity": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "ClassLibrary.bundle.scp.css",
"AssetKind": "All",
@@ -112,13 +112,13 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\obj\\Debug\\net5.0\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\obj\\Debug\\${Tfm}\\scopedcss\\projectbundle\\ClassLibrary.bundle.scp.css"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.js",
"AssetKind": "All",
@@ -129,13 +129,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.js"
},
{
- "Identity": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
+ "Identity": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js",
"SourceId": "ClassLibrary",
"SourceType": "Project",
- "ContentRoot": "${ProjectRoot}\\ClassLibrary\\wwwroot\\",
+ "ContentRoot": "${ProjectPath}\\ClassLibrary\\wwwroot\\",
"BasePath": "_content/ClassLibrary",
"RelativePath": "js/project-transitive-dep.v4.js",
"AssetKind": "All",
@@ -146,13 +146,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${ProjectRoot}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
+ "OriginalItemSpec": "${ProjectPath}\\ClassLibrary\\wwwroot\\js\\project-transitive-dep.v4.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
"RelativePath": "PackageLibraryDirectDependency.bundle.scp.css",
"AssetKind": "All",
@@ -163,15 +163,15 @@
"AssetTraitValue": "ProjectBundle",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\PackageLibraryDirectDependency.bundle.scp.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "css/site.css",
+ "RelativePath": "js/pkg-direct-dep.js",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -180,15 +180,15 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\css\\site.css"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-direct-dep.js"
},
{
- "Identity": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css",
"SourceId": "PackageLibraryDirectDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryDirectDependency",
- "RelativePath": "js/pkg-direct-dep.js",
+ "RelativePath": "css/site.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -197,13 +197,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-direct-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarydirectdependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\site.css"
},
{
- "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js",
+ "Identity": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js",
"SourceId": "PackageLibraryTransitiveDependency",
"SourceType": "Package",
- "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\",
+ "ContentRoot": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}",
"BasePath": "_content/PackageLibraryTransitiveDependency",
"RelativePath": "js/pkg-transitive-dep.js",
"AssetKind": "All",
@@ -214,7 +214,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\[[CustomPackageVersion]]\\staticwebassets\\js\\pkg-transitive-dep.js"
+ "OriginalItemSpec": "${RestorePath}\\packagelibrarytransitivedependency\\${PackageVersion}\\staticwebassets\\${PackageTfm}\\pkg-transitive-dep.js"
}
]
}
\ No newline at end of file
diff --git a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs
index 01e6754f046b..bf656a900b3d 100644
--- a/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs
+++ b/src/Tests/Microsoft.NET.Sdk.Razor.Tests/StaticWebAssetsIntegrationTest.cs
@@ -1,22 +1,20 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+using System;
+using System.Collections.Generic;
using System.IO;
+using System.Linq;
using System.Runtime.InteropServices;
+using System.Xml.Linq;
using FluentAssertions;
using Microsoft.AspNetCore.Razor.Tasks;
+using Microsoft.NET.TestFramework;
using Microsoft.NET.TestFramework.Assertions;
using Microsoft.NET.TestFramework.Commands;
+using Microsoft.NET.TestFramework.Utilities;
using Xunit;
using Xunit.Abstractions;
-using System.Linq;
-using System.Diagnostics;
-using System.Xml.Linq;
-using NuGet.Packaging;
-using System;
-using System.Collections.Generic;
-using Microsoft.NET.TestFramework.Utilities;
-using Microsoft.NET.TestFramework;
namespace Microsoft.NET.Sdk.Razor.Tests
{
@@ -49,8 +47,9 @@ public void Build_GeneratesJsonManifestAndCopiesItToOutputFolder()
var finalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json");
new FileInfo(finalPath).Should().Exist();
- AssertManifest(StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), expectedManifest);
- AssertBuildAssets(StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))), outputPath, intermediateOutputPath);
+ var manifest1 = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json")));
+ AssertManifest(manifest1, expectedManifest);
+ AssertBuildAssets(manifest1, outputPath, intermediateOutputPath);
}
[Fact]
@@ -116,7 +115,8 @@ public void Build_UpdatesManifest_WhenFilesChange()
var originalObjFile = new FileInfo(path);
originalObjFile.Should().Exist();
var objManifestContents = File.ReadAllText(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"));
- AssertManifest(StaticWebAssetsManifest.FromJsonString(objManifestContents), LoadBuildManifest());
+ var firstManifest = StaticWebAssetsManifest.FromJsonString(objManifestContents);
+ AssertManifest(firstManifest, LoadBuildManifest());
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var finalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json");
@@ -125,7 +125,7 @@ public void Build_UpdatesManifest_WhenFilesChange()
var binManifestContents = File.ReadAllText(finalPath);
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonString(objManifestContents),
+ firstManifest,
outputPath,
intermediateOutputPath);
@@ -140,8 +140,9 @@ public void Build_UpdatesManifest_WhenFilesChange()
var secondObjFile = new FileInfo(secondPath);
secondObjFile.Should().Exist();
var secondObjManifest = File.ReadAllText(secondPath);
+ var secondManifest = StaticWebAssetsManifest.FromJsonString(secondObjManifest);
AssertManifest(
- StaticWebAssetsManifest.FromJsonString(secondObjManifest),
+ secondManifest,
LoadBuildManifest("Updated"),
"Updated");
@@ -158,7 +159,7 @@ public void Build_UpdatesManifest_WhenFilesChange()
secondFinalFile.LastWriteTimeUtc.Should().NotBe(originalFile.LastWriteTimeUtc);
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonString(secondObjManifest),
+ secondManifest,
outputPath,
intermediateOutputPath,
"Updated");
@@ -182,19 +183,17 @@ public void BuildProjectWithReferences_GeneratesJsonManifestAndCopiesItToOutputF
// GenerateStaticWebAssetsManifest should generate the manifest file.
var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json");
new FileInfo(path).Should().Exist();
+ var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
LoadBuildManifest());
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json");
new FileInfo(finalPath).Should().Exist();
- AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
- LoadBuildManifest());
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -236,19 +235,20 @@ public void BuildProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibraries(
// GenerateStaticWebAssetsManifest should generate the manifest file.
var path = Path.Combine(intermediateOutputPath, "staticwebassets.build.json");
new FileInfo(path).Should().Exist();
+ var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json")));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifest,
LoadBuildManifest());
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json");
new FileInfo(finalPath).Should().Exist();
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ manifest,
LoadBuildManifest());
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ manifest,
outputPath,
intermediateOutputPath);
}
@@ -304,12 +304,13 @@ public void PublishProjectWithReferences_WorksWithStaticWebAssetsV1ClassLibrarie
// GenerateStaticWebAssetsPublishManifest should generate the publish manifest file.
var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(path).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -337,9 +338,10 @@ public void BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCo
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var finalPath = Path.Combine(outputPath, "AppWithPackageAndP2PReference.staticwebassets.runtime.json");
new FileInfo(finalPath).Should().Exist();
- var manifest = File.ReadAllText(finalPath);
+ var manifestContents = File.ReadAllText(finalPath);
+ var initialManifest = StaticWebAssetsManifest.FromJsonString(File.ReadAllText(path));
AssertManifest(
- StaticWebAssetsManifest.FromJsonString(File.ReadAllText(path)),
+ initialManifest,
LoadBuildManifest());
// Second build
@@ -348,26 +350,28 @@ public void BuildProjectWithReferences_NoDependencies_GeneratesJsonManifestAndCo
// GenerateStaticWebAssetsManifest should generate the manifest file.
new FileInfo(path).Should().Exist();
+ var manifestNoDeps = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(path)),
+ manifestNoDeps,
LoadBuildManifest("NoDependencies"),
"NoDependencies");
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
new FileInfo(finalPath).Should().Exist();
+ var manifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json")));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ manifest,
LoadBuildManifest("NoDependencies"),
"NoDependencies");
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ manifest,
outputPath,
intermediateOutputPath,
"NoDependencies");
// Check that the two manifests are the same
- manifest.Should().Be(File.ReadAllText(finalPath));
+ manifestContents.Should().Be(File.ReadAllText(finalPath));
}
// Rebuild
@@ -403,13 +407,14 @@ public void Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder()
var secondPath = Path.Combine(intermediateOutputPath, "staticwebassets.build.json");
var secondObjFile = new FileInfo(secondPath);
secondObjFile.Should().Exist();
- var secondObjManifest = File.ReadAllText(secondPath);
+ var secondObjManifestContents = File.ReadAllText(secondPath);
+ var secondManifest = StaticWebAssetsManifest.FromJsonString(secondObjManifestContents);
AssertManifest(
- StaticWebAssetsManifest.FromJsonString(secondObjManifest),
+ secondManifest,
LoadBuildManifest("Rebuild"),
"Rebuild");
- secondObjManifest.Should().Be(objManifestContents);
+ secondObjManifestContents.Should().Be(objManifestContents);
// GenerateStaticWebAssetsManifest should copy the file to the output folder.
var secondFinalPath = Path.Combine(outputPath, "ComponentApp.staticwebassets.runtime.json");
@@ -422,7 +427,7 @@ public void Rebuild_RegeneratesJsonManifestAndCopiesItToOutputFolder()
secondFinalFile.LastWriteTimeUtc.Should().NotBe(originalFile.LastWriteTimeUtc);
AssertBuildAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(Path.Combine(intermediateOutputPath, "staticwebassets.build.json"))),
+ secondManifest,
outputPath,
intermediateOutputPath,
"Rebuild");
@@ -458,7 +463,7 @@ public void Publish_GeneratesPublishJsonManifestAndCopiesPublishAssets()
AssertManifest(publishManifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -489,12 +494,13 @@ public void Publish_PublishSingleFile_GeneratesPublishJsonManifestAndCopiesPubli
// GenerateStaticWebAssetsManifest should generate the publish manifest file.
var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(path).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -555,12 +561,13 @@ public void Publish_NoBuild_GeneratesPublishJsonManifestAndCopiesPublishAssets()
// GenerateStaticWebAssetsManifest should generate the publish manifest file.
var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(path).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -595,6 +602,11 @@ public void Build_DeployOnPublish_GeneratesPublishJsonManifestAndCopiesPublishAs
new FileInfo(path).Should().Exist();
var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(publishManifest, LoadPublishManifest());
+
+ AssertPublishAssets(
+ publishManifest,
+ Path.Combine(outputPath, "publish"),
+ intermediateOutputPath);
}
[Fact(Skip="https://github.com/dotnet/sdk/issues/28429")]
@@ -627,12 +639,13 @@ public void PublishProjectWithReferences_GeneratesPublishJsonManifestAndCopiesPu
// GenerateStaticWebAssetsPublishManifest should generate the publish manifest file.
var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(path).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -667,7 +680,7 @@ public void PublishProjectWithReferences_PublishSingleFile_GeneratesPublishJsonM
AssertManifest(publishManifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -733,7 +746,7 @@ public void PublishProjectWithReferences_NoBuild_GeneratesPublishJsonManifestAnd
AssertManifest(publishManifest, LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -768,12 +781,13 @@ public void PublishProjectWithReferences_AppendTargetFrameworkToOutputPathFalse_
// GenerateStaticWebAssetsPublishManifest should generate the publish manifest file.
var intermediatePublishManifestPath = Path.Combine(intermediateOutputPath, "staticwebassets.publish.json");
new FileInfo(path).Should().Exist();
+ var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
LoadPublishManifest());
AssertPublishAssets(
- StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath)),
+ publishManifest,
publishPath,
intermediateOutputPath);
}
@@ -812,6 +826,11 @@ public void BuildProjectWithReferences_DeployOnPublish_GeneratesPublishJsonManif
new FileInfo(path).Should().Exist();
var publishManifest = StaticWebAssetsManifest.FromJsonBytes(File.ReadAllBytes(intermediatePublishManifestPath));
AssertManifest(publishManifest, LoadPublishManifest());
+
+ AssertPublishAssets(
+ publishManifest,
+ Path.Combine(outputPath, "publish"),
+ intermediateOutputPath);
}
// Pack