Esempio n. 1
0
 internal DebugLibraryInfo(DebugLibraryKind kind, string fileName, Architecture targetArch, OSPlatform platform, SymbolProperties archivedUnder, ImmutableArray <byte> clrBuildId)
 {
     Kind               = kind;
     FileName           = fileName;
     TargetArchitecture = targetArch;
     ArchivedUnder      = archivedUnder;
     IndexBuildId       = clrBuildId;
     Platform           = platform;
 }
Esempio n. 2
0
 internal DebugLibraryInfo(DebugLibraryKind kind, string fileName, Architecture targetArch, SymbolProperties archivedUnder, int filesize, int timestamp)
 {
     Kind               = kind;
     FileName           = fileName;
     TargetArchitecture = targetArch;
     ArchivedUnder      = archivedUnder;
     IndexFileSize      = filesize;
     IndexTimeStamp     = timestamp;
     IndexBuildId       = ImmutableArray <byte> .Empty;
     Platform           = OSPlatform.Windows;
 }