2 writes to DebugInformationFormat
Microsoft.CodeAnalysis (2)
Emit\EmitOptions.cs (2)
237DebugInformationFormat = (debugInformationFormat == 0) ? DebugInformationFormat.Pdb : debugInformationFormat; 449return new EmitOptions(this) { DebugInformationFormat = format };
14 references to DebugInformationFormat
Microsoft.CodeAnalysis (14)
CommandLine\CommandLineArguments.cs (1)
372=> EmitPdb && EmitOptions.DebugInformationFormat != DebugInformationFormat.Embedded;
Compilation\Compilation.cs (4)
2858if (options?.DebugInformationFormat == DebugInformationFormat.Embedded) 2890if (options?.DebugInformationFormat == DebugInformationFormat.Embedded && 2924options?.DebugInformationFormat != DebugInformationFormat.Embedded) 2966bool embedPdb = options.DebugInformationFormat == DebugInformationFormat.Embedded;
Compilation\DeterministicKeyBuilder.cs (1)
490writer.Write("debugInformationFormat", options.DebugInformationFormat);
Emit\CommonPEModuleBuilder.cs (1)
77internal DebugInformationFormat DebugInformationFormat => EmitOptions.DebugInformationFormat;
Emit\EmitOptions.cs (7)
255other.DebugInformationFormat, 293DebugInformationFormat == other.DebugInformationFormat && 312Hash.Combine((int)DebugInformationFormat, 336if (!DebugInformationFormat.IsValid()) 338diagnostics.Add(messageProvider.CreateDiagnostic(messageProvider.ERR_InvalidDebugInformationFormat, Location.None, (int)DebugInformationFormat)); 444if (DebugInformationFormat == format)