1 write to BundleRelativePath
Microsoft.NET.HostModel (1)
Bundle\FileSpec.cs (1)
24
BundleRelativePath
= bundleRelativePath;
12 references to BundleRelativePath
Microsoft.NET.HostModel (12)
Bundle\Bundler.cs (10)
206
if (fileSpec.
BundleRelativePath
.Equals(_depsJson))
211
if (fileSpec.
BundleRelativePath
.Equals(_runtimeConfigJson))
216
if (Path.GetExtension(fileSpec.
BundleRelativePath
).ToLowerInvariant().Equals(".pdb"))
327
var bundleManifestLength = Manifest.GetManifestLength(BundleManifest.BundleMajorVersion, relativePathToSpec.Select(x => x.Spec.
BundleRelativePath
));
364
string relativePath = fileSpec.
BundleRelativePath
;
476
FileSpec[] hostSpecs = fileSpecs.Where(x => IsHost(x.
BundleRelativePath
)).ToArray();
499
string relativePath = fileSpec.
BundleRelativePath
;
517
if (relativePathToSpec.TryGetValue(fileSpec.
BundleRelativePath
, out var existingFileSpec))
521
throw new ArgumentException($"Invalid input specification: Found entries '{fileSpec.SourcePath}' and '{existingFileSpec.Spec.SourcePath}' with the same BundleRelativePath '{fileSpec.
BundleRelativePath
}'");
529
relativePathToSpec.Add(fileSpec.
BundleRelativePath
, (fileSpec, type));
Bundle\FileSpec.cs (2)
31
!string.IsNullOrWhiteSpace(
BundleRelativePath
);
34
public override string ToString() => $"SourcePath: {SourcePath}, RelativePath: {
BundleRelativePath
} {(Excluded ? "[Excluded]" : "")}";