10 references to RemoveAnalyzerConfigDocument
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Workspaces\WorkspaceTests_EditorFeatures.cs (1)
1218newSolution = oldSolution.RemoveAnalyzerConfigDocument(newDocId);
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
2057DocumentKind.AnalyzerConfig => solution.RemoveAnalyzerConfigDocument(documentId),
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\Project.cs (1)
762=> this.Solution.RemoveAnalyzerConfigDocument(documentId).GetProject(this.Id)!;
Workspace\Workspace.cs (1)
1174return oldSolution.RemoveAnalyzerConfigDocument(documentId);
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
SolutionTests\SolutionTests.cs (4)
152Assert.Throws<ArgumentNullException>(() => solution.RemoveAnalyzerConfigDocument(null!)); 153Assert.Throws<InvalidOperationException>(() => solution.RemoveAnalyzerConfigDocument(s_unrelatedDocumentId)); 3979solution = solution.RemoveAnalyzerConfigDocument(editorConfigDocumentId); 4065solution = solution.RemoveAnalyzerConfigDocument(editorConfigDocumentId);
Microsoft.VisualStudio.LanguageServices (1)
Preview\TopLevelChange.cs (1)
133solution = solution.RemoveAnalyzerConfigDocument(updatedDocumentIdOpt);
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
296return s.RemoveAnalyzerConfigDocument(analyzerConfigDocumentId);