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)
176var reportingOptions = new DiagnosticReportingOptions( 255var 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)
176var reportingOptions = new DiagnosticReportingOptions( 251var requestedProjectOptions = DiagnosticReportingOptions.ThrowForAll; 255var discoveredProjectOptions = new DiagnosticReportingOptions(
MSBuild\MSBuildProjectLoader.Worker.cs (6)
58private readonly DiagnosticReportingOptions _requestedProjectOptions; 63private readonly DiagnosticReportingOptions _discoveredProjectOptions; 85DiagnosticReportingOptions requestedProjectOptions, 86DiagnosticReportingOptions discoveredProjectOptions, 180private async Task<ImmutableArray<ProjectFileInfo>> LoadProjectFileInfosAsync(string projectPath, DiagnosticReportingOptions reportingOptions, CancellationToken cancellationToken) 227string projectPath, DiagnosticReportingOptions reportingOptions, CancellationToken cancellationToken)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
342var projectFileInfos = await LoadProjectFileInfosAsync(projectPath, DiagnosticReportingOptions.IgnoreAll, cancellationToken).ConfigureAwait(false);