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)
191
var reportingOptions = new
DiagnosticReportingOptions
(
273
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)
191
var
reportingOptions = new DiagnosticReportingOptions(
269
var
requestedProjectOptions =
DiagnosticReportingOptions
.ThrowForAll;
273
var
discoveredProjectOptions = new DiagnosticReportingOptions(
MSBuild\MSBuildProjectLoader.Worker.cs (6)
57
private readonly
DiagnosticReportingOptions
_requestedProjectOptions;
62
private readonly
DiagnosticReportingOptions
_discoveredProjectOptions;
84
DiagnosticReportingOptions
requestedProjectOptions,
85
DiagnosticReportingOptions
discoveredProjectOptions,
171
private async Task<ImmutableArray<ProjectFileInfo>> LoadProjectFileInfosAsync(string projectPath,
DiagnosticReportingOptions
reportingOptions, CancellationToken cancellationToken)
220
string projectPath,
DiagnosticReportingOptions
reportingOptions, CancellationToken cancellationToken)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
352
var projectFileInfos = await LoadProjectFileInfosAsync(projectPath,
DiagnosticReportingOptions
.IgnoreAll, cancellationToken).ConfigureAwait(false);