Solution.WithProjectAnalyzerReferences Method

Definition

Create a new solution instance with the project specified updated to include only the specified analyzer references.

public:
 Microsoft::CodeAnalysis::Solution ^ WithProjectAnalyzerReferences(Microsoft::CodeAnalysis::ProjectId ^ projectId, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::Diagnostics::AnalyzerReference ^> ^ analyzerReferences);
public Microsoft.CodeAnalysis.Solution WithProjectAnalyzerReferences (Microsoft.CodeAnalysis.ProjectId projectId, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference> analyzerReferences);
member this.WithProjectAnalyzerReferences : Microsoft.CodeAnalysis.ProjectId * seq<Microsoft.CodeAnalysis.Diagnostics.AnalyzerReference> -> Microsoft.CodeAnalysis.Solution
Public Function WithProjectAnalyzerReferences (projectId As ProjectId, analyzerReferences As IEnumerable(Of AnalyzerReference)) As Solution

Parameters

projectId
ProjectId
analyzerReferences
IEnumerable<AnalyzerReference>

Returns

Exceptions

analyzerReferences contains null.

analyzerReferences contains duplicate items.

The solution does not contain projectId.

Applies to