7 references to Pdb
Microsoft.CodeAnalysis (4)
Compilation\Compilation.cs (2)
3305
if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.
Pdb
&& pdbStreamProvider != null)
3544
var nativePdbWriter = (moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.
Pdb
) ? null :
Emit\DebugInformationFormat.cs (1)
18
return value >= DebugInformationFormat.
Pdb
&& value <= DebugInformationFormat.Embedded;
Emit\EmitOptions.cs (1)
237
DebugInformationFormat = (debugInformationFormat == 0) ? DebugInformationFormat.
Pdb
: debugInformationFormat;
Microsoft.CodeAnalysis.CSharp (3)
CommandLine\CSharpCommandLineParser.cs (2)
74
DebugInformationFormat debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.
Pdb
;
826
debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.
Pdb
;
Emitter\EditAndContinue\EmitHelpers.cs (1)
36
var emitOptions = EmitOptions.Default.WithDebugInformationFormat(baseline.HasPortablePdb ? DebugInformationFormat.PortablePdb : DebugInformationFormat.
Pdb
);