15 references to PortablePdb
Microsoft.CodeAnalysis (5)
Compilation\Compilation.cs (1)
3309
moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.
PortablePdb
|| pdbStreamProvider == null
Emit\DebugInformationFormat.cs (1)
23
return value == DebugInformationFormat.
PortablePdb
|| value == DebugInformationFormat.Embedded;
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
78
debugMetadataOpt: (context.Module.DebugInformationFormat == DebugInformationFormat.
PortablePdb
) ? new MetadataBuilder() : null,
Emit\EmitOptions.cs (1)
21
: new EmitOptions().WithDebugInformationFormat(DebugInformationFormat.
PortablePdb
);
PEWriter\FullMetadataWriter.cs (1)
52
case DebugInformationFormat.
PortablePdb
:
Microsoft.CodeAnalysis.CSharp (4)
CommandLine\CSharpCommandLineParser.cs (3)
74
DebugInformationFormat debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.
PortablePdb
: DebugInformationFormat.Pdb;
826
debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.
PortablePdb
: DebugInformationFormat.Pdb;
829
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
Emitter\EditAndContinue\EmitHelpers.cs (1)
36
var emitOptions = EmitOptions.Default.WithDebugInformationFormat(baseline.HasPortablePdb ? DebugInformationFormat.
PortablePdb
: DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.Rebuild (1)
CompilationFactory.cs (1)
133
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
Microsoft.CodeAnalysis.Scripting (1)
Utilities\PdbHelpers.cs (1)
16
return DebugInformationFormat.
PortablePdb
;
Microsoft.CodeAnalysis.VisualBasic (4)
CommandLine\VisualBasicCommandLineParser.vb (3)
102
Dim debugInformationFormat As DebugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.
PortablePdb
, DebugInformationFormat.Pdb)
753
debugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.
PortablePdb
, DebugInformationFormat.Pdb)
755
debugInformationFormat = DebugInformationFormat.
PortablePdb
Emit\EditAndContinue\EmitHelpers.vb (1)
36
Dim emitOpts = EmitOptions.Default.WithDebugInformationFormat(If(baseline.HasPortablePdb, DebugInformationFormat.
PortablePdb
, DebugInformationFormat.Pdb))