2 writes to DebugInformationFormat
Microsoft.CodeAnalysis (2)
Emit\EmitOptions.cs (2)
237
DebugInformationFormat
= (debugInformationFormat == 0) ? DebugInformationFormat.Pdb : debugInformationFormat;
449
return 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)
2858
if (options?.
DebugInformationFormat
== DebugInformationFormat.Embedded)
2890
if (options?.
DebugInformationFormat
== DebugInformationFormat.Embedded &&
2924
options?.
DebugInformationFormat
!= DebugInformationFormat.Embedded)
2966
bool embedPdb = options.
DebugInformationFormat
== DebugInformationFormat.Embedded;
Compilation\DeterministicKeyBuilder.cs (1)
490
writer.Write("debugInformationFormat", options.
DebugInformationFormat
);
Emit\CommonPEModuleBuilder.cs (1)
77
internal DebugInformationFormat DebugInformationFormat => EmitOptions.
DebugInformationFormat
;
Emit\EmitOptions.cs (7)
255
other.
DebugInformationFormat
,
293
DebugInformationFormat
== other.
DebugInformationFormat
&&
312
Hash.Combine((int)
DebugInformationFormat
,
336
if (!
DebugInformationFormat
.IsValid())
338
diagnostics.Add(messageProvider.CreateDiagnostic(messageProvider.ERR_InvalidDebugInformationFormat, Location.None, (int)
DebugInformationFormat
));
444
if (
DebugInformationFormat
== format)