12 references to Pdb
Microsoft.CodeAnalysis (4)
Compilation\Compilation.cs (2)
3297
if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.
Pdb
&& pdbStreamProvider != null)
3536
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
);
Microsoft.CodeAnalysis.VisualBasic (5)
CodeGen\EmitStatement.vb (1)
1440
If _module.debugInformationFormat = DebugInformationFormat.
Pdb
Then
CommandLine\VisualBasicCommandLineParser.vb (2)
102
Dim debugInformationFormat As DebugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.
Pdb
)
753
debugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.
Pdb
)
Compilation\MethodCompiler.vb (1)
1683
Dim stateMachineHoistedLocalScopes = If(kickoffMethod Is Nothing OrElse moduleBuilder.DebugInformationFormat = DebugInformationFormat.
Pdb
,
Emit\EditAndContinue\EmitHelpers.vb (1)
36
Dim emitOpts = EmitOptions.Default.WithDebugInformationFormat(If(baseline.HasPortablePdb, DebugInformationFormat.PortablePdb, DebugInformationFormat.
Pdb
))