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)
191var reportingOptions = new DiagnosticReportingOptions( 273var discoveredProjectOptions = new DiagnosticReportingOptions(
13 references to DiagnosticReportingOptions
Microsoft.CodeAnalysis.Workspaces.MSBuild (13)
MSBuild\DiagnosticReportingOptions.cs (2)
20public static DiagnosticReportingOptions IgnoreAll { get; } 23public static DiagnosticReportingOptions ThrowForAll { get; }
MSBuild\MSBuildProjectLoader.cs (4)
191var reportingOptions = new DiagnosticReportingOptions( 269var requestedProjectOptions = DiagnosticReportingOptions.ThrowForAll; 273var discoveredProjectOptions = new DiagnosticReportingOptions(
MSBuild\MSBuildProjectLoader.Worker.cs (6)
57private readonly DiagnosticReportingOptions _requestedProjectOptions; 62private readonly DiagnosticReportingOptions _discoveredProjectOptions; 84DiagnosticReportingOptions requestedProjectOptions, 85DiagnosticReportingOptions discoveredProjectOptions, 171private async Task<ImmutableArray<ProjectFileInfo>> LoadProjectFileInfosAsync(string projectPath, DiagnosticReportingOptions reportingOptions, CancellationToken cancellationToken) 220string projectPath, DiagnosticReportingOptions reportingOptions, CancellationToken cancellationToken)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
352var projectFileInfos = await LoadProjectFileInfosAsync(projectPath, DiagnosticReportingOptions.IgnoreAll, cancellationToken).ConfigureAwait(false);