9 references to DebugInformationFormat
Microsoft.CodeAnalysis (9)
Compilation\Compilation.cs (6)
3229Debug.Assert(moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.Embedded || pdbStreamProvider == null); 3233if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.Embedded || pdbStreamProvider != null) 3242if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.Embedded && !RoslynString.IsNullOrEmpty(pePdbFilePath)) 3260if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.Pdb && pdbStreamProvider != null) 3272moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.PortablePdb || pdbStreamProvider == null 3437var nativePdbWriter = (moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.Pdb) ? null :
Emit\EditAndContinue\DeltaMetadataWriter.cs (2)
81debugMetadataOpt: (context.Module.DebugInformationFormat == DebugInformationFormat.PortablePdb) ? new MetadataBuilder() : null, 93Debug.Assert(context.Module.DebugInformationFormat != DebugInformationFormat.Embedded);
PEWriter\FullMetadataWriter.cs (1)
51switch (context.Module.DebugInformationFormat)