22 references to OSPath
Microsoft.NET.Sdk.StaticWebAssets.Tasks (22)
Compression\DiscoverPrecompressedAssets.cs (1)
35
var candidatesByIdentity = candidates.ToDictionary(asset => asset.Identity,
OSPath
.PathComparer);
Data\StaticWebAsset.cs (3)
299
var excluded = new HashSet<string>(
OSPath
.PathComparer);
333
var seen = new HashSet<string>(assets.Length,
OSPath
.PathComparer);
334
var deferred = new Dictionary<string, int>(
OSPath
.PathComparer);
DefineStaticWebAssetEndpoints.cs (3)
73
Dictionary<string, HashSet<string>> existingEndpointsByAssetFile = new(ExistingEndpoints.Length,
OSPath
.PathComparer);
74
var assets = new HashSet<string>(CandidateAssets.Length,
OSPath
.PathComparer);
92
set = new HashSet<string>(
OSPath
.PathComparer);
GeneratePackageAssetsManifestFile.cs (2)
92
var identityToPackagePath = new Dictionary<string, string>(parsedAssets.Length, Utils.
OSPath
.PathComparer);
111
var assets = new Dictionary<string, StaticWebAsset>(
OSPath
.PathComparer);
GenerateStaticWebAssetEndpointsManifest.cs (1)
68
.ToDictionary(a => a.ResolvedAsset.Identity, a => a,
OSPath
.PathComparer);
GenerateStaticWebAssetsDevelopmentManifest.cs (1)
313
if (asset.Identity.StartsWith(asset.ContentRoot,
OSPath
.PathComparison))
GenerateStaticWebAssetsManifest.cs (1)
103
var assetsByIdentity = assets.ToDictionary(a => a.Identity, a => a,
OSPath
.PathComparer);
MergeConfigurationProperties.cs (1)
117
OSPath
.PathComparison);
MergeStaticWebAssets.cs (1)
84
if (!ReferenceEquals(prototypeItem, item) && string.Equals(prototypeItem.Identity, item.Identity,
OSPath
.PathComparison))
ReadPackageAssetsManifest.cs (1)
113
var frameworkPaths = new Dictionary<string, string>(
OSPath
.PathComparer);
ResolveFingerprintedStaticWebAssetEndpointsForAssets.cs (2)
32
var endpointsByAsset = candidateEndpoints.GroupBy(e => e.AssetFile,
OSPath
.PathComparer)
33
.ToDictionary(g => g.Key, g => g.ToArray(),
OSPath
.PathComparer);
UpdateExternallyDefinedStaticWebAssets.cs (3)
45
.GroupBy(e => e.AssetFile,
OSPath
.PathComparer)
46
.ToDictionary(e => e.Key, e => e.ToArray(),
OSPath
.PathComparer);
120
var regexOptions = (
OSPath
.PathComparison == StringComparison.OrdinalIgnoreCase ? RegexOptions.IgnoreCase : RegexOptions.None) |
UpdatePackageStaticWebAssets.cs (1)
40
var assetMapping = new Dictionary<string, string>(
OSPath
.PathComparer);
Utils\Globbing\PathTokenizer.cs (1)
87
foreach (var range in MemoryExtensions.SplitAny(_path,
OSPath
.DirectoryPathSeparators.Span))