1 write to RelativePath
Microsoft.NET.HostModel (1)
Bundle\FileEntry.cs (1)
38RelativePath = relativePath.Replace('\\', DirectorySeparatorChar);
7 references to RelativePath
Microsoft.NET.HostModel (7)
Bundle\FileEntry.cs (4)
55writer.Write(RelativePath); 56Debug.Assert(writer.BaseStream.Position - start == GetFileEntryLength(BundleMajorVersion, RelativePath), 57$"FileEntry size mismatch. Expected: {GetFileEntryLength(BundleMajorVersion, RelativePath)}, Actual: {writer.BaseStream.Position - start}"); 72public override string ToString() => $"{RelativePath} [{Type}] @{Offset} Sz={Size} CompressedSz={CompressedSize}";
Bundle\Manifest.cs (3)
176Debug.Assert(writer.BaseStream.Position - startOffset == GetManifestLength(BundleMajorVersion, Files.Select(static f => f.RelativePath)), 177$"Manifest size mismatch: {writer.BaseStream.Position - startOffset} != {GetManifestLength(BundleMajorVersion, Files.Select(static f => f.RelativePath))}"); 205return Files.Any(entry => relativePath.Equals(entry.RelativePath));