11 references to EmbeddedPortablePdb
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\SymbolReader\PortablePdbSymbolReader.cs (1)
86if (debugEntry.Type != DebugDirectoryEntryType.EmbeddedPortablePdb)
Microsoft.CodeAnalysis.Features (2)
Emit\CompilationOutputFilesWithImplicitPdbPath.cs (1)
57var embeddedPdbEntry = debugDirectory.FirstOrDefault(e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
Emit\CompilationOutputs.cs (1)
110var embeddedPdbEntry = peReader.ReadDebugDirectory().FirstOrDefault(e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
Microsoft.CodeAnalysis.Rebuild (2)
CompilationOptionsReader.cs (1)
449public bool HasEmbeddedPdb => PeReader.ReadDebugDirectory().Any(static entry => entry.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
Extensions.cs (1)
26var entry = peReader.ReadDebugDirectory().SingleOrDefault(x => x.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
System.Diagnostics.StackTrace (1)
System\Diagnostics\StackTraceSymbols.cs (1)
206if (entry.Type == DebugDirectoryEntryType.EmbeddedPortablePdb)
System.Reflection.Metadata (5)
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryBuilder.EmbeddedPortablePdb.cs (1)
35type: DebugDirectoryEntryType.EmbeddedPortablePdb,
System\Reflection\PortableExecutable\PEReader.cs (1)
747var embeddedPdbEntry = ImmutableArrayExtensions.FirstOrDefault(entries, e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
System\Reflection\PortableExecutable\PEReader.EmbeddedPortablePdb.cs (3)
31/// <exception cref="ArgumentException"><paramref name="entry"/> is not a <see cref="DebugDirectoryEntryType.EmbeddedPortablePdb"/> entry.</exception> 36if (entry.Type != DebugDirectoryEntryType.EmbeddedPortablePdb) 38Throw.InvalidArgument(SR.Format(SR.UnexpectedDebugDirectoryType, nameof(DebugDirectoryEntryType.EmbeddedPortablePdb)), nameof(entry));