15 references to Embedded
Microsoft.CodeAnalysis (12)
CommandLine\CommandLineArguments.cs (1)
372
=> EmitPdb && EmitOptions.DebugInformationFormat != DebugInformationFormat.
Embedded
;
Compilation\Compilation.cs (7)
2858
if (options?.DebugInformationFormat == DebugInformationFormat.
Embedded
)
2890
if (options?.DebugInformationFormat == DebugInformationFormat.
Embedded
&&
2924
options?.DebugInformationFormat != DebugInformationFormat.
Embedded
)
2966
bool embedPdb = options.DebugInformationFormat == DebugInformationFormat.
Embedded
;
3266
Debug.Assert(moduleBeingBuilt.DebugInformationFormat != DebugInformationFormat.
Embedded
|| pdbStreamProvider == null);
3270
if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.
Embedded
|| pdbStreamProvider != null)
3279
if (moduleBeingBuilt.DebugInformationFormat == DebugInformationFormat.
Embedded
&& !RoslynString.IsNullOrEmpty(pePdbFilePath))
Emit\DebugInformationFormat.cs (2)
18
return value >= DebugInformationFormat.Pdb && value <= DebugInformationFormat.
Embedded
;
23
return value == DebugInformationFormat.PortablePdb || value == DebugInformationFormat.
Embedded
;
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
90
Debug.Assert(context.Module.DebugInformationFormat != DebugInformationFormat.
Embedded
);
PEWriter\FullMetadataWriter.cs (1)
56
case DebugInformationFormat.
Embedded
:
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
832
debugInformationFormat = DebugInformationFormat.
Embedded
;
Microsoft.CodeAnalysis.Rebuild (1)
CompilationFactory.cs (1)
123
debugInformationFormat = DebugInformationFormat.
Embedded
;
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
757
debugInformationFormat = DebugInformationFormat.
Embedded