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