32 references to ProjectChanged
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
Diagnostics\Suppression\RemoveUnnecessaryPragmaSuppressionsTests.cs (1)
1066workspace.SetCurrentSolution(s => s.WithProjectCompilationOptions(projectId, compilationOptions), WorkspaceChangeKind.ProjectChanged, projectId);
Microsoft.CodeAnalysis.EditorFeatures (3)
Classification\Syntactic\SyntacticClassificationTaggerProvider.TagComputer.cs (1)
294if (args.Kind != WorkspaceChangeKind.ProjectChanged)
EditorConfigSettings\Aggregator\SettingsAggregator.cs (1)
62case WorkspaceChangeKind.ProjectChanged:
Shared\Tagging\EventSources\TaggerEventSources.ParseOptionChangedEventSource.cs (1)
33if (e.Kind == WorkspaceChangeKind.ProjectChanged)
Microsoft.CodeAnalysis.Features (1)
ExternalAccess\UnitTesting\SolutionCrawler\UnitTestingWorkCoordinator.cs (1)
172case 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)
272Workspace.SetCurrentSolution(solutionTransformation, WorkspaceChangeKind.ProjectChanged, projectId);
Workspace\ProjectSystem\SolutionChangeAccumulator.cs (3)
17/// and <see cref="WorkspaceChangeKind.ProjectChanged"/> or 58_workspaceChangeKind = WorkspaceChangeKind.ProjectChanged; 105_workspaceChangeKind = WorkspaceChangeKind.ProjectChanged;
Workspace\Workspace.cs (16)
897=> SetCurrentSolution(oldSolution => oldSolution.WithProjectAssemblyName(projectId, assemblyName), WorkspaceChangeKind.ProjectChanged, projectId); 903=> SetCurrentSolution(oldSolution => oldSolution.WithProjectOutputFilePath(projectId, outputFilePath), WorkspaceChangeKind.ProjectChanged, projectId); 909=> SetCurrentSolution(oldSolution => oldSolution.WithProjectOutputRefFilePath(projectId, outputFilePath), WorkspaceChangeKind.ProjectChanged, projectId); 919=> SetCurrentSolution(oldSolution => oldSolution.WithProjectName(projectId, name).WithProjectFilePath(projectId, filePath), WorkspaceChangeKind.ProjectChanged, projectId); 925=> SetCurrentSolution(oldSolution => oldSolution.WithProjectDefaultNamespace(projectId, defaultNamespace), WorkspaceChangeKind.ProjectChanged, projectId); 931=> SetCurrentSolution(oldSolution => oldSolution.WithProjectCompilationOptions(projectId, options), WorkspaceChangeKind.ProjectChanged, projectId); 937=> SetCurrentSolution(oldSolution => oldSolution.WithProjectParseOptions(projectId, options), WorkspaceChangeKind.ProjectChanged, projectId); 953}, WorkspaceChangeKind.ProjectChanged, projectId); 967}, WorkspaceChangeKind.ProjectChanged, projectId); 979}, WorkspaceChangeKind.ProjectChanged, projectId); 991}, WorkspaceChangeKind.ProjectChanged, projectId); 1003}, WorkspaceChangeKind.ProjectChanged, projectId); 1015}, WorkspaceChangeKind.ProjectChanged, projectId); 1054=> SetCurrentSolution(oldSolution => oldSolution.WithHasAllInformation(projectId, hasAllInformation), WorkspaceChangeKind.ProjectChanged, projectId); 1060=> SetCurrentSolution(oldSolution => oldSolution.WithRunAnalyzers(projectId, runAnalyzers), WorkspaceChangeKind.ProjectChanged, projectId); 1085data.@this.RaiseWorkspaceChangedEventAsync(WorkspaceChangeKind.ProjectChanged, oldSolution, newSolution, projectId);
Workspace\WorkspaceChangeEventArgs.cs (1)
44/// <item><see cref="WorkspaceChangeKind.ProjectChanged"/></item>
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Workspaces\TestWorkspace`1.cs (1)
558return this.RaiseWorkspaceChangedEventAsync(WorkspaceChangeKind.ProjectChanged, oldSolution, newSolution, projectId);
Microsoft.VisualStudio.LanguageServices (2)
Library\ObjectBrowser\AbstractObjectBrowserLibraryManager.cs (1)
96case WorkspaceChangeKind.ProjectChanged:
Packaging\PackageInstallerServiceFactory.cs (1)
437case WorkspaceChangeKind.ProjectChanged:
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
ProjectSystemShim\VisualStudioProjectTests\WorkspaceChangedEventTests.vb (2)
49Assert.Equal(WorkspaceChangeKind.ProjectChanged, change.Kind) 89Assert.Equal(WorkspaceChangeKind.ProjectChanged, change.Kind)