38 references to ProjectChanged
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Diagnostics\Suppression\RemoveUnnecessaryPragmaSuppressionsTests.cs (1)
1067workspace.SetCurrentSolution(s => s.WithProjectCompilationOptions(projectId, compilationOptions), WorkspaceChangeKind.ProjectChanged, projectId);
Microsoft.CodeAnalysis.EditorFeatures (3)
Classification\Syntactic\SyntacticClassificationTaggerProvider.TagComputer.cs (1)
243if (args.Kind != WorkspaceChangeKind.ProjectChanged)
EditorConfigSettings\Aggregator\SettingsAggregator.cs (1)
43case WorkspaceChangeKind.ProjectChanged:
Shared\Tagging\EventSources\TaggerEventSources.ParseOptionChangedEventSource.cs (1)
31if (e.Kind == WorkspaceChangeKind.ProjectChanged)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Workspaces\TestWorkspace.cs (1)
803return this.RaiseWorkspaceChangedEventAsync(WorkspaceChangeKind.ProjectChanged, oldSolution, newSolution, projectId);
Microsoft.CodeAnalysis.Features (3)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (1)
270case WorkspaceChangeKind.ProjectChanged:
SolutionCrawler\WorkCoordinator.cs (1)
224case WorkspaceChangeKind.ProjectChanged:
Workspace\BackgroundParser.cs (1)
81case WorkspaceChangeKind.ProjectChanged:
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Ordering\RequestOrderingTests.cs (1)
212testLspServer.TestWorkspace.SetCurrentSolution(s => s.WithProjectName(s.Projects.First().Id, "NewName"), WorkspaceChangeKind.ProjectChanged);
Microsoft.CodeAnalysis.Workspaces (21)
Workspace\ProjectSystem\ProjectSystemProjectFactory.cs (1)
204Workspace.SetCurrentSolution(solutionTransformation, WorkspaceChangeKind.ProjectChanged, projectId);
Workspace\ProjectSystem\SolutionChangeAccumulator.cs (3)
17/// and <see cref="WorkspaceChangeKind.ProjectChanged"/> or 61_workspaceChangeKind = WorkspaceChangeKind.ProjectChanged; 108_workspaceChangeKind = WorkspaceChangeKind.ProjectChanged;
Workspace\Workspace.cs (16)
655=> SetCurrentSolution(oldSolution => oldSolution.WithProjectAssemblyName(projectId, assemblyName), WorkspaceChangeKind.ProjectChanged, projectId); 661=> SetCurrentSolution(oldSolution => oldSolution.WithProjectOutputFilePath(projectId, outputFilePath), WorkspaceChangeKind.ProjectChanged, projectId); 667=> SetCurrentSolution(oldSolution => oldSolution.WithProjectOutputRefFilePath(projectId, outputFilePath), WorkspaceChangeKind.ProjectChanged, projectId); 677=> SetCurrentSolution(oldSolution => oldSolution.WithProjectName(projectId, name).WithProjectFilePath(projectId, filePath), WorkspaceChangeKind.ProjectChanged, projectId); 683=> SetCurrentSolution(oldSolution => oldSolution.WithProjectDefaultNamespace(projectId, defaultNamespace), WorkspaceChangeKind.ProjectChanged, projectId); 689=> SetCurrentSolution(oldSolution => oldSolution.WithProjectCompilationOptions(projectId, options), WorkspaceChangeKind.ProjectChanged, projectId); 695=> SetCurrentSolution(oldSolution => oldSolution.WithProjectParseOptions(projectId, options), WorkspaceChangeKind.ProjectChanged, projectId); 711}, WorkspaceChangeKind.ProjectChanged, projectId); 725}, WorkspaceChangeKind.ProjectChanged, projectId); 737}, WorkspaceChangeKind.ProjectChanged, projectId); 749}, WorkspaceChangeKind.ProjectChanged, projectId); 761}, WorkspaceChangeKind.ProjectChanged, projectId); 773}, WorkspaceChangeKind.ProjectChanged, projectId); 806=> SetCurrentSolution(oldSolution => oldSolution.WithHasAllInformation(projectId, hasAllInformation), WorkspaceChangeKind.ProjectChanged, projectId); 812=> SetCurrentSolution(oldSolution => oldSolution.WithRunAnalyzers(projectId, runAnalyzers), WorkspaceChangeKind.ProjectChanged, projectId); 837data.@this.RaiseWorkspaceChangedEventAsync(WorkspaceChangeKind.ProjectChanged, oldSolution, newSolution, projectId);
Workspace\WorkspaceChangeEventArgs.cs (1)
44/// <item><see cref="WorkspaceChangeKind.ProjectChanged"/></item>
Microsoft.VisualStudio.LanguageServices (4)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
92case WorkspaceChangeKind.ProjectChanged:
Packaging\PackageInstallerServiceFactory.cs (1)
438case WorkspaceChangeKind.ProjectChanged:
TableDataSource\AbstractTable.cs (1)
51case WorkspaceChangeKind.ProjectChanged:
TaskList\ExternalErrorDiagnosticUpdateSource.cs (1)
282case WorkspaceChangeKind.ProjectChanged:
Microsoft.VisualStudio.LanguageServices.Implementation (2)
SolutionExplorer\AnalyzerItem\AnalyzerItemSource.cs (1)
56case WorkspaceChangeKind.ProjectChanged:
SolutionExplorer\DiagnosticItem\BaseDiagnosticAndGeneratorItemSource.cs (1)
145else if (e.Kind == WorkspaceChangeKind.ProjectChanged)
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
ProjectSystemShim\VisualStudioProjectTests\WorkspaceChangedEventTests.vb (2)
49Assert.Equal(WorkspaceChangeKind.ProjectChanged, change.Kind) 89Assert.Equal(WorkspaceChangeKind.ProjectChanged, change.Kind)