74 references to Pdb
Microsoft.CodeAnalysis (4)
Compilation\Compilation.cs (2)
3205if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.Pdb && pdbStreamProvider != null) 3383var 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; 794debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb;
Emitter\EditAndContinue\EmitHelpers.cs (1)
35var emitOptions = EmitOptions.Default.WithDebugInformationFormat(baseline.HasPortablePdb ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
CommandLineTests.cs (2)
1897var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 12089var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
PdbSourceDocument\AbstractPdbSourceDocumentTests.cs (1)
304emitOptions = emitOptions.WithDebugInformationFormat(DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (21)
Emit\DeterministicTests.cs (3)
59if (pdbFormat == DebugInformationFormat.Pdb) 213if (pdbFormat == DebugInformationFormat.Pdb) 240if (pdbFormat == DebugInformationFormat.Pdb)
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)
1988</symbols>", format: CodeAnalysis.Emit.DebugInformationFormat.Pdb); 2101</symbols>", format: CodeAnalysis.Emit.DebugInformationFormat.Pdb);
PDB\PDBSourceLinkTests.cs (1)
153options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.Pdb),
PDB\PDBTests.cs (9)
420</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 452</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 491</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 511</symbols>", format: DebugInformationFormat.Pdb, options: PdbValidationOptions.SkipConversionValidation); 698", format: DebugInformationFormat.Pdb); 4897</symbols>", format: DebugInformationFormat.Pdb); 12332", format: DebugInformationFormat.Pdb); 12411", format: DebugInformationFormat.Pdb); 12977", options: PdbValidationOptions.IncludeModuleDebugInfo, format: DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (15)
CompileExpressionsTests.cs (8)
742if (runtime.DebugFormat == DebugInformationFormat.Pdb) 804if (runtime.DebugFormat == DebugInformationFormat.Pdb) 872if (runtime.DebugFormat == DebugInformationFormat.Pdb) 962if (runtime.DebugFormat == DebugInformationFormat.Pdb) 1008if (runtime.DebugFormat == DebugInformationFormat.Pdb) 1097if (runtime.DebugFormat == DebugInformationFormat.Pdb) 1254format: Microsoft.CodeAnalysis.Emit.DebugInformationFormat.Pdb); 1430format: Microsoft.CodeAnalysis.Emit.DebugInformationFormat.Pdb);
ExpressionCompilerTestBase.cs (6)
75foreach (var debugFormat in new[] { DebugInformationFormat.Pdb, DebugInformationFormat.PortablePdb }) 99DebugInformationFormat debugFormat = DebugInformationFormat.Pdb, 111var instance = RuntimeInstance.Create(module, references, DebugInformationFormat.Pdb); 319DebugInformationFormat debugFormat = DebugInformationFormat.Pdb) 348DebugInformationFormat debugFormat = DebugInformationFormat.Pdb) 367DebugInformationFormat debugFormat = DebugInformationFormat.Pdb)
ReferencedModulesTests.cs (1)
798using (var runtime = new RuntimeInstance(modules, DebugInformationFormat.Pdb))
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
ScriptTests.cs (1)
79public 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)
98public static readonly EmitOptions NativePdbEmit = EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
EditAndContinue\EditAndContinueMethodDebugInfoReaderTests.cs (1)
48[InlineData(DebugInformationFormat.Pdb, true)]
Emit\CompilationOutputsTests.cs (2)
51[InlineData(DebugInformationFormat.Pdb)] 82Assert.Equal(format != DebugInformationFormat.Pdb, encReader.IsPortable);
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.Utilities (2)
ExpressionCompilerTestHelpers.cs (1)
484DebugInformationFormat debugFormat = DebugInformationFormat.Pdb,
RuntimeInstance.cs (1)
37return new RuntimeInstance(ImmutableArray.CreateRange(modules), DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.Scripting (1)
Utilities\PdbHelpers.cs (1)
23return DebugInformationFormat.Pdb;
Microsoft.CodeAnalysis.Test.Utilities (1)
CommonTestBase.cs (1)
686new 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)
1439If _module.debugInformationFormat = DebugInformationFormat.Pdb Then
CommandLine\VisualBasicCommandLineParser.vb (2)
100Dim debugInformationFormat As DebugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb) 715debugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb)
Compilation\MethodCompiler.vb (1)
1643Dim stateMachineHoistedLocalScopes = If(kickoffMethod Is Nothing OrElse moduleBuilder.DebugInformationFormat = DebugInformationFormat.Pdb,
Emit\EditAndContinue\EmitHelpers.vb (1)
32Dim emitOpts = EmitOptions.Default.WithDebugInformationFormat(If(baseline.HasPortablePdb, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb))
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
CommandLineTests.vb (1)
3033Dim 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)
4750", options:=PdbValidationOptions.IncludeModuleDebugInfo, format:=DebugInformationFormat.Pdb)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests (4)
ExpressionCompilerTestBase.vb (4)
66For Each debugFormat In {DebugInformationFormat.Pdb, DebugInformationFormat.PortablePdb} 82Optional debugFormat As DebugInformationFormat = DebugInformationFormat.Pdb, 94Dim instance = RuntimeInstance.Create([module], references, DebugInformationFormat.Pdb) 327Dim runtime = CreateRuntimeInstance(compilation0, debugFormat:=If(includeSymbols, DebugInformationFormat.Pdb, Nothing))
Roslyn.Test.PdbUtilities (4)
Reader\PdbValidation.cs (4)
108DebugInformationFormat format = DebugInformationFormat.Pdb, 119DebugInformationFormat format = DebugInformationFormat.Pdb, 240bool testWindowsPdb = (format == 0 || format == DebugInformationFormat.Pdb) && ExecutionConditionUtil.IsWindows; 527var emitOptions = EmitOptions.Default.WithDebugInformationFormat(portable ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);