9 references to DebugInformationFormat
Microsoft.CodeAnalysis (9)
Compilation\Compilation.cs (6)
3228
Debug.Assert(moduleBeingBuilt.
DebugInformationFormat
!= DebugInformationFormat.Embedded || pdbStreamProvider == null);
3232
if (moduleBeingBuilt.
DebugInformationFormat
== DebugInformationFormat.Embedded || pdbStreamProvider != null)
3241
if (moduleBeingBuilt.
DebugInformationFormat
== DebugInformationFormat.Embedded && !RoslynString.IsNullOrEmpty(pePdbFilePath))
3259
if (moduleBeingBuilt.
DebugInformationFormat
== DebugInformationFormat.Pdb && pdbStreamProvider != null)
3271
moduleBeingBuilt.
DebugInformationFormat
!= DebugInformationFormat.PortablePdb || pdbStreamProvider == null
3436
var nativePdbWriter = (moduleBeingBuilt.
DebugInformationFormat
!= DebugInformationFormat.Pdb) ? null :
Emit\EditAndContinue\DeltaMetadataWriter.cs (2)
80
debugMetadataOpt: (context.Module.
DebugInformationFormat
== DebugInformationFormat.PortablePdb) ? new MetadataBuilder() : null,
92
Debug.Assert(context.Module.
DebugInformationFormat
!= DebugInformationFormat.Embedded);
PEWriter\FullMetadataWriter.cs (1)
50
switch (context.Module.
DebugInformationFormat
)