8 references to NormalizeContentRootPath
Microsoft.NET.Sdk.StaticWebAssets.Tasks (5)
CollectStaticWebAssetsToCopy.cs (1)
25var normalizedOutputPath = StaticWebAsset.NormalizeContentRootPath(Path.GetFullPath(OutputPath));
Data\StaticWebAsset.cs (2)
743ContentRoot = !string.IsNullOrEmpty(ContentRoot) ? NormalizeContentRootPath(ContentRoot) : ContentRoot; 809string.Equals(ContentRoot, NormalizeContentRootPath(path), StringComparison.Ordinal);
DefineStaticWebAssets.cs (2)
335var normalizedContentRoot = StaticWebAsset.NormalizeContentRootPath(contentRoot); 436var normalizedContentRoot = StaticWebAsset.NormalizeContentRootPath(string.IsNullOrEmpty(candidate.GetMetadata(nameof(StaticWebAsset.ContentRoot))) ?
Microsoft.NET.Sdk.StaticWebAssets.Tests (3)
StaticWebAssets\GenerateStaticWebAssetsDevelopmentManifestTest.cs (3)
698ContentRoot = StaticWebAsset.NormalizeContentRootPath(contentRoot ?? Path.Combine(Environment.CurrentDirectory, "wwwroot")) 705ContentRoots = contentRoots.Select(cr => StaticWebAsset.NormalizeContentRootPath(cr)).ToArray(), 741ContentRoot = StaticWebAsset.NormalizeContentRootPath(contentRoot ?? Environment.CurrentDirectory),