58 references to Pdb
Microsoft.CodeAnalysis (4)
Compilation\Compilation.cs (2)
3249if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.Pdb && pdbStreamProvider != null) 3426var nativePdbWriter = (moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.Pdb) ? null :
Emit\DebugInformationFormat.cs (1)
18return value >= DebugInformationFormat.Pdb && value <= DebugInformationFormat.Embedded;
Emit\EmitOptions.cs (1)
235DebugInformationFormat = (debugInformationFormat == 0) ? DebugInformationFormat.Pdb : debugInformationFormat;
Microsoft.CodeAnalysis.CSharp (3)
CommandLine\CSharpCommandLineParser.cs (2)
72DebugInformationFormat debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 798debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb;
Emitter\EditAndContinue\EmitHelpers.cs (1)
36var emitOptions = EmitOptions.Default.WithDebugInformationFormat(baseline.HasPortablePdb ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
CommandLineTests.cs (2)
1960var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 12388var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
PdbSourceDocument\AbstractPdbSourceDocumentTests.cs (1)
312emitOptions = emitOptions.WithDebugInformationFormat(DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (3)
Emit\DeterministicTests.cs (3)
59if (pdbFormat == DebugInformationFormat.Pdb) 213if (pdbFormat == DebugInformationFormat.Pdb) 240if (pdbFormat == DebugInformationFormat.Pdb)
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (24)
PDB\PDBConstantTests.cs (5)
63</symbols>", format: DebugInformationFormat.Pdb); 127</symbols>", format: DebugInformationFormat.Pdb); 629</symbols>", format: DebugInformationFormat.Pdb); 689</symbols>", format: DebugInformationFormat.Pdb); 746</symbols>", format: DebugInformationFormat.Pdb);
PDB\PDBEmbeddedSourceTests.cs (1)
23[InlineData(DebugInformationFormat.Pdb)]
PDB\PDBLambdaTests.cs (2)
1997</symbols>", format: CodeAnalysis.Emit.DebugInformationFormat.Pdb); 2125</symbols>", format: CodeAnalysis.Emit.DebugInformationFormat.Pdb);
PDB\PDBSourceLinkTests.cs (1)
153options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.Pdb),
PDB\PDBTests.cs (9)
508</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 540</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 579</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 599</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 786", format: DebugInformationFormat.Pdb); 4985</symbols>", format: DebugInformationFormat.Pdb); 12349", format: DebugInformationFormat.Pdb); 12428", format: DebugInformationFormat.Pdb); 12994", options: PdbValidationOptions.IncludeModuleDebugInfo, format: DebugInformationFormat.Pdb);
PDB\PDBUsingTests.cs (6)
911format: DebugInformationFormat.Pdb); 997format: DebugInformationFormat.Pdb); 1090format: DebugInformationFormat.Pdb); 1183format: DebugInformationFormat.Pdb); 1275format: DebugInformationFormat.Pdb); 1367format: DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
ScriptTests.cs (1)
82public void TestEmit_WindowsPdb() => TestEmit(DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (1)
Symbols\ModuleInitializers\ModuleInitializersTests.cs (1)
1155emitOptions: EmitOptions.Default.WithDebugInformationFormat(PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb),
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
TestOptions.cs (1)
102public static readonly EmitOptions NativePdbEmit = EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
Emit\CompilationOutputsTests.cs (2)
50[InlineData(DebugInformationFormat.Pdb)] 81Assert.Equal(format != DebugInformationFormat.Pdb, encReader.IsPortable);
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueMethodDebugInfoReaderTests.cs (1)
47[InlineData(DebugInformationFormat.Pdb, true)]
Microsoft.CodeAnalysis.Test.Utilities (1)
CommonTestBase.cs (1)
721new object[] { DebugInformationFormat.Pdb },
Microsoft.CodeAnalysis.UnitTests (1)
Emit\EmitOptionsTests.cs (1)
64PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.Pdb : DebugInformationFormat.PortablePdb);
Microsoft.CodeAnalysis.VisualBasic (5)
CodeGen\EmitStatement.vb (1)
1438If _module.debugInformationFormat = DebugInformationFormat.Pdb Then
CommandLine\VisualBasicCommandLineParser.vb (2)
100Dim debugInformationFormat As DebugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb) 734debugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb)
Compilation\MethodCompiler.vb (1)
1675Dim stateMachineHoistedLocalScopes = If(kickoffMethod Is Nothing OrElse moduleBuilder.DebugInformationFormat = DebugInformationFormat.Pdb,
Emit\EditAndContinue\EmitHelpers.vb (1)
34Dim emitOpts = EmitOptions.Default.WithDebugInformationFormat(If(baseline.HasPortablePdb, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb))
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
CommandLineTests.vb (1)
3041Dim platformPdbKind = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (3)
PDB\PDBEmbeddedSourceTests.vb (1)
18<InlineData(DebugInformationFormat.Pdb)>
PDB\PDBExternalSourceDirectiveTests.vb (1)
758</symbols>, format:=DebugInformationFormat.Pdb)
PDB\PDBTests.vb (1)
4775", options:=PdbValidationOptions.IncludeModuleDebugInfo, format:=DebugInformationFormat.Pdb)
Roslyn.Test.PdbUtilities (4)
Reader\PdbValidation.cs (4)
105DebugInformationFormat format = DebugInformationFormat.Pdb, 117DebugInformationFormat format = DebugInformationFormat.Pdb, 240bool testWindowsPdb = (format == 0 || format == DebugInformationFormat.Pdb) && ExecutionConditionUtil.IsWindows; 527var emitOptions = EmitOptions.Default.WithDebugInformationFormat(portable ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);