254 references to PortablePdb
Microsoft.CodeAnalysis (5)
Compilation\Compilation.cs (1)
3217moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.PortablePdb || pdbStreamProvider == null
Emit\DebugInformationFormat.cs (1)
23return value == DebugInformationFormat.PortablePdb || value == DebugInformationFormat.Embedded;
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
84debugMetadataOpt: (context.Module.DebugInformationFormat == DebugInformationFormat.PortablePdb) ? new MetadataBuilder() : null,
Emit\EmitOptions.cs (1)
21: new EmitOptions().WithDebugInformationFormat(DebugInformationFormat.PortablePdb);
PEWriter\FullMetadataWriter.cs (1)
54case DebugInformationFormat.PortablePdb:
Microsoft.CodeAnalysis.CSharp (4)
CommandLine\CSharpCommandLineParser.cs (3)
72DebugInformationFormat debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 794debugInformationFormat = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 797debugInformationFormat = DebugInformationFormat.PortablePdb;
Emitter\EditAndContinue\EmitHelpers.cs (1)
35var emitOptions = EmitOptions.Default.WithDebugInformationFormat(baseline.HasPortablePdb ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (4)
CommandLineTests.cs (4)
1897var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 1957Assert.Equal(DebugInformationFormat.PortablePdb, parsedArgs.EmitOptions.DebugInformationFormat); 12089var platformPdbKind = PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb; 12093Tuple.Create("portable", DebugInformationFormat.PortablePdb),
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
PdbSourceDocument\AbstractPdbSourceDocumentTests.cs (1)
293emitOptions = new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb, pdbFilePath: pdbFilePath);
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (28)
Emit\CompilationEmitTests.cs (2)
5189var result = compilation.Emit(output, pdbStream, options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb)); 5469.WithDebugInformationFormat(DebugInformationFormat.PortablePdb);
Emit\DeterministicTests.cs (1)
489.WithDebugInformationFormat(DebugInformationFormat.PortablePdb)
Emit\EditAndContinue\EditAndContinuePdbTests.cs (2)
173if (format == DebugInformationFormat.PortablePdb) 293if (format == DebugInformationFormat.PortablePdb)
Emit\EditAndContinue\EditAndContinueTests.cs (2)
461var bytes0 = compilation0.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb)); 11537var bytes0 = compilation0.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb));
PDB\CheckSumTest.cs (2)
252</symbols>", format: DebugInformationFormat.PortablePdb); 321</symbols>", format: DebugInformationFormat.PortablePdb);
PDB\PDBAsyncTests.cs (1)
2039options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb));
PDB\PDBConstantTests.cs (5)
83</symbols>", format: DebugInformationFormat.PortablePdb); 145</symbols>", format: DebugInformationFormat.PortablePdb); 647</symbols>", format: DebugInformationFormat.PortablePdb); 707</symbols>", format: DebugInformationFormat.PortablePdb); 764</symbols>", format: DebugInformationFormat.PortablePdb);
PDB\PDBEmbeddedSourceTests.cs (1)
22[InlineData(DebugInformationFormat.PortablePdb)]
PDB\PDBIteratorTests.cs (1)
1633options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb));
PDB\PDBTests.cs (6)
145", format: DebugInformationFormat.PortablePdb, options: PdbValidationOptions.ExcludeMethods); 676", format: DebugInformationFormat.PortablePdb); 4913</symbols>", format: DebugInformationFormat.PortablePdb); 5008</symbols>", format: DebugInformationFormat.PortablePdb); 12361</symbols>", format: DebugInformationFormat.PortablePdb); 12429</symbols>", format: DebugInformationFormat.PortablePdb);
PDB\PDBUsingTests.cs (1)
2777c.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream: pdbStream);
PDB\PortablePdbTests.cs (3)
45var peBlob = c.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream: pdbStream); 304c.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream: pdbStream, sourceLinkStream: new MemoryStream(sourceLinkBlob)); 382var result = c.Emit(new MemoryStream(), new MemoryStream(), options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), sourceLinkStream: sourceLinkStream);
PDB\TypeDefinitionDocumentTests.cs (1)
467var pe = compilation.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream: pdbStream);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
Emit\NumericIntPtrTests.cs (2)
10309var emitOptions = new EmitOptions(runtimeMetadataVersion: "v5.1", debugInformationFormat: DebugInformationFormat.PortablePdb); 11767emitOptions: new EmitOptions(runtimeMetadataVersion: "v5.1", debugInformationFormat: DebugInformationFormat.PortablePdb),
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (138)
CompileExpressionsTests.cs (2)
1292format: Microsoft.CodeAnalysis.Emit.DebugInformationFormat.PortablePdb); 1466format: Microsoft.CodeAnalysis.Emit.DebugInformationFormat.PortablePdb);
DynamicTests.cs (9)
313if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 333if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 391if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 448if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 467if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 488if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 545if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 572if (runtime.DebugFormat == DebugInformationFormat.PortablePdb) 613if (runtime.DebugFormat == DebugInformationFormat.PortablePdb)
ExpressionCompilerTestBase.cs (1)
75foreach (var debugFormat in new[] { DebugInformationFormat.Pdb, DebugInformationFormat.PortablePdb })
ExpressionCompilerTests.cs (66)
7982atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8024atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8067atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8112atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8155atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8199atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8232atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8277atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8323atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8370atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8414atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8457atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8500atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8543atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8576atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8619atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8662atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8705atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8750atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8795atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8840atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8882atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8924atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 8966atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9009atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9054atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9099atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9142atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9178atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9214atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9240atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9275atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9389atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9454atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9494atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9536atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9566atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9596atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9625atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9666atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9709atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9752atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9790atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9817atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9888atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9928atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 9971atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10011atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10050atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10089atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10131atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10172atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10210atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10278atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10320atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10361atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10404atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10440atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10467atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10490atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10523atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10549atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10585atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10612atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10641atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb, 10680atLineNumber: 100, debugFormat: DebugInformationFormat.PortablePdb,
LocalsTests.cs (60)
6455WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6506WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6558WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6612WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6664WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6717WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6757WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6811WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6866WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6922WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 6975WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7027WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7079WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7131WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7171WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7223WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7275WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7327WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7381WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7435WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7489WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7540WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7591WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7642WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7694WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7748WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7802WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7855WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7897WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7939WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 7971WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8019WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8068WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8119WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8155WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8191WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8226WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8276WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8328WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8380WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8427WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8460WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8507WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8554WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8604WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8653WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8699WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8737WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8785WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8835WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8884WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8929WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8962WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 8991WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9033WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9065WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9110WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9143WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9178WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime => 9213WithRuntimeInstance(compilation0, targetDebugFormat: DebugInformationFormat.PortablePdb, validator: runtime =>
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (2)
ScriptTests.cs (2)
76public void TestEmit_PortablePdb() => TestEmit(DebugInformationFormat.PortablePdb); 96portablePdbStreamOpt: (format == DebugInformationFormat.PortablePdb) ? pdbStream : null,
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Compilation\CompilationAPITests.cs (2)
455options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), 467options: EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb),
Symbols\ModuleInitializers\ModuleInitializersTests.cs (1)
1155emitOptions: EmitOptions.Default.WithDebugInformationFormat(PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb),
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Diagnostics\DiagnosticTest.cs (1)
2844ca.VerifyEmitDiagnostics(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb),
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (12)
EditAndContinue\EditAndContinueMethodDebugInfoReaderTests.cs (3)
46[InlineData(DebugInformationFormat.PortablePdb, true)] 47[InlineData(DebugInformationFormat.PortablePdb, false)] 74if (format == DebugInformationFormat.PortablePdb && useSymReader)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (7)
290DebugInformationFormat pdbFormat = DebugInformationFormat.PortablePdb, 303DebugInformationFormat pdbFormat = DebugInformationFormat.PortablePdb, 333private Guid EmitLibrary(Compilation compilation, DebugInformationFormat pdbFormat = DebugInformationFormat.PortablePdb) 2825var (peImage, pdbImage) = compilationV1.EmitToArrays(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb)); 3326var (peImageA, pdbImageA) = compilationA.EmitToArrays(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb)); 3332var (peImageB, pdbImageB) = compilationB.EmitToArrays(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb)); 3498var peImage = compilationV1.EmitToArray(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb), pdbStream: pdbStream);
Emit\CompilationOutputFilesTests.cs (1)
33var peImage = compilation.EmitToArray(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb), pdbStream: pdbStream);
Emit\CompilationOutputsTests.cs (1)
49[InlineData(DebugInformationFormat.PortablePdb)]
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler.Utilities (1)
ExpressionCompilerTestHelpers.cs (1)
790var emitOptions = EmitOptions.Default.WithRuntimeMetadataVersion("0.0.0.0").WithDebugInformationFormat(DebugInformationFormat.PortablePdb);
Microsoft.CodeAnalysis.Rebuild (1)
CompilationFactory.cs (1)
133debugInformationFormat = DebugInformationFormat.PortablePdb;
Microsoft.CodeAnalysis.Rebuild.UnitTests (2)
OptionRoundTripTests.cs (1)
83RoundTripUtil.VerifyRoundTrip(original, new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb, pdbFilePath: "test.pdb"));
RoundTripUtil.cs (1)
148case DebugInformationFormat.PortablePdb:
Microsoft.CodeAnalysis.Scripting (1)
Utilities\PdbHelpers.cs (1)
19return DebugInformationFormat.PortablePdb;
Microsoft.CodeAnalysis.Test.Utilities (3)
CommonTestBase.cs (2)
687new object[] { DebugInformationFormat.PortablePdb } 694new object[] { DebugInformationFormat.PortablePdb }
Compilation\CompilationExtensions.cs (1)
68options = (options ?? EmitOptions.Default).WithDebugInformationFormat(DebugInformationFormat.PortablePdb);
Microsoft.CodeAnalysis.UnitTests (1)
Emit\EmitOptionsTests.cs (1)
64PathUtilities.IsUnixLikePlatform ? DebugInformationFormat.Pdb : DebugInformationFormat.PortablePdb);
Microsoft.CodeAnalysis.VisualBasic (4)
CommandLine\VisualBasicCommandLineParser.vb (3)
100Dim debugInformationFormat As DebugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb) 715debugInformationFormat = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb) 717debugInformationFormat = DebugInformationFormat.PortablePdb
Emit\EditAndContinue\EmitHelpers.vb (1)
32Dim emitOpts = EmitOptions.Default.WithDebugInformationFormat(If(baseline.HasPortablePdb, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb))
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (2)
CommandLineTests.vb (2)
3033Dim platformPdbKind = If(PathUtilities.IsUnixLikePlatform, DebugInformationFormat.PortablePdb, DebugInformationFormat.Pdb) 3077Assert.Equal(parsedArgs.EmitOptions.DebugInformationFormat, DebugInformationFormat.PortablePdb)
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (23)
Emit\EditAndContinue\EditAndContinuePdbTests.vb (5)
19<InlineData(DebugInformationFormat.PortablePdb)> '<MemberData(NameOf(ExternalPdbFormats))> 176If format = DebugInformationFormat.PortablePdb Then 250</symbols>, format:=DebugInformationFormat.PortablePdb) 277If format = DebugInformationFormat.PortablePdb Then 335</symbols>, format:=DebugInformationFormat.PortablePdb)
Emit\EditAndContinue\EditAndContinueStateMachineTests.vb (2)
8315format:=DebugInformationFormat.PortablePdb) 8424format:=DebugInformationFormat.PortablePdb)
PDB\ChecksumTests.vb (3)
268</symbols>, format:=DebugInformationFormat.PortablePdb) 330</symbols>, format:=DebugInformationFormat.PortablePdb) 378</symbols>, format:=DebugInformationFormat.PortablePdb)
PDB\PDBAsyncTests.vb (1)
954Dim result = compilation.Emit(peStream, pdbStream, options:=EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb))
PDB\PDBEmbeddedSourceTests.vb (1)
17<InlineData(DebugInformationFormat.PortablePdb)>
PDB\PDBExternalSourceDirectiveTests.vb (4)
73</symbols>, format:=DebugInformationFormat.PortablePdb) 180</symbols>, format:=DebugInformationFormat.PortablePdb) 576</symbols>, format:=DebugInformationFormat.PortablePdb) 800</symbols>, format:=DebugInformationFormat.PortablePdb)
PDB\PDBIteratorTests.vb (1)
553Dim result = compilation.Emit(peStream, pdbStream, options:=EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb))
PDB\PDBLambdaTests.vb (1)
536</symbols>, format:=DebugInformationFormat.PortablePdb)
PDB\PDBTests.vb (1)
98", format:=DebugInformationFormat.PortablePdb, options:=PdbValidationOptions.ExcludeMethods)
PDB\PortablePdbTests.vb (3)
40compilation.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream:=pdbStream) 200c.EmitToArray(EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream:=pdbStream, sourceLinkStream:=New MemoryStream(sourceLinkBlob)) 269Dim result = c.Emit(New MemoryStream(), New MemoryStream(), options:=EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), sourceLinkStream:=sourceLinkStream)
PDB\TypeDefinitionDocumentTests.vb (1)
349Dim pe = compilation.EmitToArray(EmitOptions.[Default].WithDebugInformationFormat(DebugInformationFormat.PortablePdb), pdbStream:=pdbStream)
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler.UnitTests (9)
ExpressionCompilerTestBase.vb (1)
66For Each debugFormat In {DebugInformationFormat.Pdb, DebugInformationFormat.PortablePdb}
ImportDebugInfoTests.vb (8)
43If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 82If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 103If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 158If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 401If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 458Dim expectedNamespaces = If(runtime.DebugFormat = DebugInformationFormat.PortablePdb, 514If runtime.DebugFormat = DebugInformationFormat.PortablePdb Then 578Dim expectedNamespaces = If(runtime.DebugFormat = DebugInformationFormat.PortablePdb,
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Compilation\CompilationAPITests.vb (2)
460options:=EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb), 472options:=EmitOptions.Default.WithDebugInformationFormat(DebugInformationFormat.PortablePdb),
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (3)
ProjectSystemShim\VisualStudioCompilationOutputFilesTests.cs (3)
28[InlineData(DebugInformationFormat.PortablePdb, true)] 29[InlineData(DebugInformationFormat.PortablePdb, false)] 91var peImage = compilation.EmitToArray(new EmitOptions(debugInformationFormat: DebugInformationFormat.PortablePdb, pdbFilePath: debugDirPdbPath), pdbStream: pdbStream);
Roslyn.Test.PdbUtilities (2)
Reader\PdbValidation.cs (2)
241bool testPortablePdb = format is 0 or DebugInformationFormat.PortablePdb; 527var emitOptions = EmitOptions.Default.WithDebugInformationFormat(portable ? DebugInformationFormat.PortablePdb : DebugInformationFormat.Pdb);