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