34 references to Guids
Microsoft.VisualStudio.LanguageServices (31)
Diagnostics\VisualStudioDiagnosticAnalyzerService.cs (6)
82VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.RunCodeAnalysisForProject, Guids.RoslynGroupId, OnRunCodeAnalysisForSelectedProject, OnRunCodeAnalysisForSelectedProjectStatus); 83VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeDefault, Guids.RoslynGroupId, OnSetAnalysisScopeDefault, OnSetAnalysisScopeDefaultStatus); 84VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeCurrentDocument, Guids.RoslynGroupId, OnSetAnalysisScopeCurrentDocument, OnSetAnalysisScopeCurrentDocumentStatus); 85VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeOpenDocuments, Guids.RoslynGroupId, OnSetAnalysisScopeOpenDocuments, OnSetAnalysisScopeOpenDocumentsStatus); 86VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeEntireSolution, Guids.RoslynGroupId, OnSetAnalysisScopeEntireSolution, OnSetAnalysisScopeEntireSolutionStatus); 87VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.AnalysisScopeNone, Guids.RoslynGroupId, OnSetAnalysisScopeNone, OnSetAnalysisScopeNoneStatus);
DocumentOutline\DocumentOutlineView.xaml.cs (4)
65ErrorHandler.ThrowOnFailure(_toolbarTrayHost.AddToolbar(Guids.RoslynGroupId, ID.RoslynCommands.DocumentOutlineToolbar)); 88if (pguidCmdGroup == Guids.RoslynGroupId) 137if (pguidCmdGroup == Guids.RoslynGroupId) 168Guid IVsWindowSearch.Category => Guids.DocumentOutlineSearchCategoryId;
Implementation\CommandBindings.cs (5)
18[CommandBinding(Guids.RoslynGroupIdString, ID.RoslynCommands.GoToImplementation, typeof(GoToImplementationCommandArgs))] 22[CommandBinding(Guids.CSharpGroupIdString, ID.CSharpCommands.OrganizeSortUsings, typeof(SortImportsCommandArgs))] 26[CommandBinding(Guids.CSharpGroupIdString, ID.CSharpCommands.OrganizeRemoveAndSort, typeof(SortAndRemoveUnnecessaryImportsCommandArgs))] 30[CommandBinding(Guids.CSharpGroupIdString, ID.CSharpCommands.ContextOrganizeRemoveAndSort, typeof(SortAndRemoveUnnecessaryImportsCommandArgs))] 34[CommandBinding(Guids.RoslynGroupIdString, ID.RoslynCommands.GoToValueTrackingWindow, typeof(ValueTrackingEditorCommandArgs))]
LanguageService\AbstractPackage`2.cs (1)
67await shell.LoadPackageAsync(Guids.RoslynPackageId);
PreviewPane\PreviewPaneService.cs (4)
116return Guid.Parse(Guids.CSharpOptionPageNamingStyleIdString); 120return Guid.Parse(Guids.VisualBasicOptionPageNamingStyleIdString); 127return Guid.Parse(Guids.CSharpOptionPageCodeStyleIdString); 131return Guid.Parse(Guids.VisualBasicOptionPageVBSpecificIdString);
RoslynPackage.cs (1)
48[Guid(Guids.RoslynPackageIdString)]
StackTraceExplorer\StackTraceExplorerCommandHandler.cs (3)
189var menuCommandId = new CommandID(Guids.StackTraceExplorerCommandId, 0x0100); 193var pasteCommandId = new CommandID(Guids.StackTraceExplorerCommandId, 0x0101); 194var clearCommandId = new CommandID(Guids.StackTraceExplorerCommandId, 0x0102);
StackTraceExplorer\StackTraceExplorerToolWindow.cs (2)
31[Guid(Guids.StackTraceExplorerToolWindowIdString)] 154var refCommandId = new Guid(Guids.StackTraceExplorerCommandIdString);
SyncNamespaces\SyncNamespacesCommandHandler.cs (1)
61VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.SyncNamespaces, Guids.RoslynGroupId, OnSyncNamespacesForSelectedProject, OnSyncNamespacesForSelectedProjectStatus);
UnusedReferences\RemoveUnusedReferencesCommandHandler.cs (1)
72VisualStudioCommandHandlerHelpers.AddCommand(menuCommandService, ID.RoslynCommands.RemoveUnusedReferences, Guids.RoslynGroupId, OnRemoveUnusedReferencesForSelectedProject, OnRemoveUnusedReferencesForSelectedProjectStatus);
ValueTracking\ValueTrackingToolWindow.cs (1)
15[Guid(Guids.ValueTrackingToolWindowIdString)]
Workspace\VisualStudioWorkspaceStatusServiceFactory.cs (2)
53/// A task indicating that the <see cref="Guids.GlobalHubClientPackageGuid"/> package has loaded. Calls to 83await shell.LoadPackageAsync(Guids.GlobalHubClientPackageGuid);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
Interactive\CSharpVsInteractiveWindowPackage.cs (2)
12[Guid(LanguageServiceGuids.CSharpReplPackageIdString)] 19protected override Guid LanguageServiceGuid => LanguageServiceGuids.CSharpLanguageServiceId;
Interactive\CSharpVsInteractiveWindowProvider.cs (1)
52protected override Guid LanguageServiceGuid => LanguageServiceGuids.CSharpLanguageServiceId;