15 references to PortablePdb
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (4)
CSharpCompiler.cs (4)
129
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
142
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
147
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
151
debugInformationFormat = DebugInformationFormat.
PortablePdb
;
Microsoft.CodeAnalysis (5)
Compilation\Compilation.cs (1)
3317
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
;