10 references to RemoveAnalyzerConfigDocument
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Workspaces\WorkspaceTests_EditorFeatures.cs (1)
1296newSolution = oldSolution.RemoveAnalyzerConfigDocument(newDocId);
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
1842TextDocumentKind.AnalyzerConfigDocument => solution.RemoveAnalyzerConfigDocument(documentId),
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\Project.cs (1)
799=> this.Solution.RemoveAnalyzerConfigDocument(documentId).GetRequiredProject(Id);
Workspace\Workspace.cs (1)
1453return oldSolution.RemoveAnalyzerConfigDocument(documentId);
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
SolutionTests\SolutionTests.cs (4)
154Assert.Throws<ArgumentNullException>(() => solution.RemoveAnalyzerConfigDocument(null!)); 155Assert.Throws<InvalidOperationException>(() => solution.RemoveAnalyzerConfigDocument(s_unrelatedDocumentId)); 4772solution = solution.RemoveAnalyzerConfigDocument(editorConfigDocumentId); 4857solution = solution.RemoveAnalyzerConfigDocument(editorConfigDocumentId);
Microsoft.VisualStudio.LanguageServices (1)
Preview\TopLevelChange.cs (1)
134solution = solution.RemoveAnalyzerConfigDocument(updatedDocumentIdOpt);
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
383return s.RemoveAnalyzerConfigDocument(analyzerConfigDocumentId);