13 references to PortablePdbVersions
System.Reflection.Metadata (13)
System\Reflection\Metadata\Ecma335\PortablePdbBuilder.cs (2)
15public string MetadataVersion => PortablePdbVersions.DefaultMetadataVersion; 16public ushort FormatVersion => PortablePdbVersions.DefaultFormatVersion;
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryBuilder.cs (2)
122if (portablePdbVersion > 0 && portablePdbVersion < PortablePdbVersions.MinFormatVersion) 131version: (portablePdbVersion == 0) ? 0 : PortablePdbVersions.DebugDirectoryEntryVersion(portablePdbVersion),
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryBuilder.EmbeddedPortablePdb.cs (3)
27if (portablePdbVersion < PortablePdbVersions.MinFormatVersion) 36version: PortablePdbVersions.DebugDirectoryEmbeddedVersion(portablePdbVersion), 46builder.WriteUInt32(PortablePdbVersions.DebugDirectoryEmbeddedSignature);
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryEntry.cs (1)
65public bool IsPortableCodeView => MinorVersion == PortablePdbVersions.PortableCodeViewVersionMagic;
System\Reflection\PortableExecutable\PEReader.EmbeddedPortablePdb.cs (5)
56if (formatVersion < PortablePdbVersions.MinFormatVersion) 58throw new BadImageFormatException(SR.Format(SR.UnsupportedFormatVersion, PortablePdbVersions.Format(formatVersion))); 62if (embeddedBlobVersion != PortablePdbVersions.DefaultEmbeddedVersion) 64throw new BadImageFormatException(SR.Format(SR.UnsupportedFormatVersion, PortablePdbVersions.Format(embeddedBlobVersion))); 74if (headerReader.ReadUInt32() != PortablePdbVersions.DebugDirectoryEmbeddedSignature)