44 references to RoslynCommands
Microsoft.VisualStudio.LanguageServices (18)
DocumentOutline\DocumentOutlineView.xaml.cs (11)
66ErrorHandler.ThrowOnFailure(_toolbarTrayHost.AddToolbar(Guids.RoslynGroupId, ID.RoslynCommands.DocumentOutlineToolbar)); 128case ID.RoslynCommands.DocumentOutlineExpandAll: 132case ID.RoslynCommands.DocumentOutlineCollapseAll: 136case ID.RoslynCommands.DocumentOutlineSortByName: 143case ID.RoslynCommands.DocumentOutlineSortByOrder: 150case ID.RoslynCommands.DocumentOutlineSortByType: 175case ID.RoslynCommands.DocumentOutlineExpandAll: 179case ID.RoslynCommands.DocumentOutlineCollapseAll: 183case ID.RoslynCommands.DocumentOutlineSortByName: 187case ID.RoslynCommands.DocumentOutlineSortByOrder: 191case ID.RoslynCommands.DocumentOutlineSortByType:
Implementation\CommandBindings.cs (3)
18[CommandBinding(Guids.RoslynGroupIdString, ID.RoslynCommands.GoToImplementation, typeof(GoToImplementationCommandArgs))] 34[CommandBinding(Guids.RoslynGroupIdString, ID.RoslynCommands.GoToValueTrackingWindow, typeof(ValueTrackingEditorCommandArgs))] 38[CommandBinding(Guids.RoslynGroupIdString, ID.RoslynCommands.ShowInheritanceMargin, typeof(ShowInheritanceMarginCommandArgs))]
RoslynPackage.cs (4)
84_menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.RemoveUnusedReferences, 88_menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SyncNamespaces, 95_menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.RunCodeAnalysisForProject, 99_menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.LogRoslynWorkspaceStructure,
Microsoft.VisualStudio.LanguageServices.Implementation (26)
SolutionExplorer\AnalyzersCommandHandler.cs (23)
104_addMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.AddAnalyzer, AddAnalyzerHandler); 105_ = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.OpenRuleSet, OpenRuleSetHandler); 108_removeMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.RemoveAnalyzer, RemoveAnalyzerHandler); 111_setSeverityDefaultMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityDefault, SetSeverityHandler); 112_setSeverityErrorMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityError, SetSeverityHandler); 113_setSeverityWarningMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityWarning, SetSeverityHandler); 114_setSeverityInfoMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityInfo, SetSeverityHandler); 115_setSeverityHiddenMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityHidden, SetSeverityHandler); 116_setSeverityNoneMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetSeverityNone, SetSeverityHandler); 117_openHelpLinkMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.OpenDiagnosticHelpLink, OpenDiagnosticHelpLinkHandler); 120_projectAddMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.ProjectAddAnalyzer, AddAnalyzerHandler); 121_projectContextAddMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.ProjectContextAddAnalyzer, AddAnalyzerHandler); 122_referencesContextAddMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.ReferencesContextAddAnalyzer, AddAnalyzerHandler); 123_setActiveRuleSetMenuItem = menuCommandService.AddCommand(Guids.RoslynGroupId, ID.RoslynCommands.SetActiveRuleSet, SetActiveRuleSetHandler); 144ID.RoslynCommands.AnalyzerFolderContextMenu, 171ID.RoslynCommands.AnalyzerContextMenu, 194ID.RoslynCommands.DiagnosticContextMenu, 593case ID.RoslynCommands.SetSeverityDefault: 597case ID.RoslynCommands.SetSeverityError: 601case ID.RoslynCommands.SetSeverityWarning: 605case ID.RoslynCommands.SetSeverityInfo: 609case ID.RoslynCommands.SetSeverityHidden: 613case ID.RoslynCommands.SetSeverityNone:
SolutionExplorer\SymbolTree\SymbolItemContextMenuController.cs (3)
58ID.RoslynCommands.SolutionExplorerSymbolItemGoToBase => rootProvider._goToBaseNavigationService, 59ID.RoslynCommands.SolutionExplorerSymbolItemGoToImplementation => rootProvider._goToImplementationNavigationService, 60ID.RoslynCommands.SolutionExplorerSymbolItemFindAllReferences => rootProvider._findReferencesNavigationService,