14 references to RoslynGroupId
Microsoft.VisualStudio.LanguageServices (10)
Diagnostics\VisualStudioDiagnosticAnalyzerService.cs (6)
79VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.RunCodeAnalysisForProject, Guids.RoslynGroupId, OnRunCodeAnalysisForSelectedProject, OnRunCodeAnalysisForSelectedProjectStatus); 80VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeDefault, Guids.RoslynGroupId, OnSetAnalysisScopeDefault, OnSetAnalysisScopeDefaultStatus); 81VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeCurrentDocument, Guids.RoslynGroupId, OnSetAnalysisScopeCurrentDocument, OnSetAnalysisScopeCurrentDocumentStatus); 82VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeOpenDocuments, Guids.RoslynGroupId, OnSetAnalysisScopeOpenDocuments, OnSetAnalysisScopeOpenDocumentsStatus); 83VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeEntireSolution, Guids.RoslynGroupId, OnSetAnalysisScopeEntireSolution, OnSetAnalysisScopeEntireSolutionStatus); 84VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeNone, Guids.RoslynGroupId, OnSetAnalysisScopeNone, OnSetAnalysisScopeNoneStatus);
SyncNamespaces\SyncNamespacesCommandHandler.cs (1)
63VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.SyncNamespaces, Guids.RoslynGroupId, OnSyncNamespacesForSelectedProject, OnSyncNamespacesForSelectedProjectStatus);
TableDataSource\Suppression\VisualStudioDiagnosticListTableCommandHandler.cs (2)
115var commandIdWithGroupId = new CommandID(Guids.RoslynGroupId, commandId); 267if (selectedItem.CommandID.Guid == Guids.RoslynGroupId)
UnusedReferences\RemoveUnusedReferencesCommandHandler.cs (1)
72VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.RemoveUnusedReferences, Guids.RoslynGroupId, OnRemoveUnusedReferencesForSelectedProject, OnRemoveUnusedReferencesForSelectedProjectStatus);
Microsoft.VisualStudio.LanguageServices.Implementation (3)
SolutionExplorer\AnalyzersCommandHandler.cs (2)
222var commandID = new CommandID(Guids.RoslynGroupId, roslynCommand); 606if (selectedItem.CommandID.Guid == Guids.RoslynGroupId)
SolutionExplorer\ContextMenuController.cs (1)
41var guidContextMenu = Guids.RoslynGroupId;
Microsoft.VisualStudio.LanguageServices.New.IntegrationTests (1)
WellKnownCommands.cs (1)
15public static readonly CommandID GoToImplementation = new(Guids.RoslynGroupId, ID.RoslynCommands.GoToImplementation);