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