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