11 references to EmitPdbFile
Microsoft.CodeAnalysis (2)
CommandLine\CommandLineArguments.cs (1)
350/// if <see cref="EmitPdbFile"/> is true and the compilation succeeds.
CommandLine\CommonCompiler.cs (1)
1445var pdbStreamProviderOpt = Arguments.EmitPdbFile ? new CompilerEmitStreamProvider(this, finalPdbFilePath) : null;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (8)
CommandLineTests.cs (8)
1971Assert.False(parsedArgs.EmitPdbFile); 1978Assert.False(parsedArgs.EmitPdbFile); 1985Assert.True(parsedArgs.EmitPdbFile); 1992Assert.True(parsedArgs.EmitPdbFile); 1999Assert.False(parsedArgs.EmitPdbFile); 2102Assert.False(parsedArgs.EmitPdbFile); 2107Assert.False(parsedArgs.EmitPdbFile); 2112Assert.True(parsedArgs.EmitPdbFile);
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\CompilationCacheUtilities.cs (1)
111PdbPath = arguments.EmitPdbFile ? arguments.GetPdbFilePath(dllName) : null,