4 instantiations of DiagnosticReportingOptions
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
MSBuild\DiagnosticReportingOptions.cs (2)
21
= new
DiagnosticReportingOptions
(DiagnosticReportingMode.Ignore, DiagnosticReportingMode.Ignore);
24
= new
DiagnosticReportingOptions
(DiagnosticReportingMode.Throw, DiagnosticReportingMode.Throw);
MSBuild\MSBuildProjectLoader.cs (2)
176
var reportingOptions = new
DiagnosticReportingOptions
(
255
var discoveredProjectOptions = new
DiagnosticReportingOptions
(
13 references to DiagnosticReportingOptions
Microsoft.CodeAnalysis.Workspaces.MSBuild (13)
MSBuild\DiagnosticReportingOptions.cs (2)
20
public static
DiagnosticReportingOptions
IgnoreAll { get; }
23
public static
DiagnosticReportingOptions
ThrowForAll { get; }
MSBuild\MSBuildProjectLoader.cs (4)
176
var
reportingOptions = new DiagnosticReportingOptions(
251
var
requestedProjectOptions =
DiagnosticReportingOptions
.ThrowForAll;
255
var
discoveredProjectOptions = new DiagnosticReportingOptions(
MSBuild\MSBuildProjectLoader.Worker.cs (6)
58
private readonly
DiagnosticReportingOptions
_requestedProjectOptions;
63
private readonly
DiagnosticReportingOptions
_discoveredProjectOptions;
85
DiagnosticReportingOptions
requestedProjectOptions,
86
DiagnosticReportingOptions
discoveredProjectOptions,
180
private async Task<ImmutableArray<ProjectFileInfo>> LoadProjectFileInfosAsync(string projectPath,
DiagnosticReportingOptions
reportingOptions, CancellationToken cancellationToken)
227
string projectPath,
DiagnosticReportingOptions
reportingOptions, CancellationToken cancellationToken)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
342
var projectFileInfos = await LoadProjectFileInfosAsync(projectPath,
DiagnosticReportingOptions
.IgnoreAll, cancellationToken).ConfigureAwait(false);