File: ID.RoslynCommands.cs
Web Access
Project: ..\..\..\src\VisualStudio\Core\Def\Microsoft.VisualStudio.LanguageServices_ckcrqypr_wpftmp.csproj (Microsoft.VisualStudio.LanguageServices)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.VisualStudio.LanguageServices
{
    internal static partial class ID
    {
        /// <summary>
        /// Commands using the old Roslyn command set GUID.
        /// </summary>
        public static class RoslynCommands
        {
            // Analyzer node context menu command IDs
            public const int AnalyzerContextMenu = 0x0103;
            public const int AddAnalyzer = 0x0106;
            public const int AnalyzerFolderContextMenu = 0x0107;
            public const int RemoveAnalyzer = 0x0109;
            public const int OpenRuleSet = 0x010a;
            public const int ProjectAddAnalyzer = 0x010b;
            public const int ProjectContextAddAnalyzer = 0x010c;
            public const int ReferencesContextAddAnalyzer = 0x010d;
            public const int DiagnosticContextMenu = 0x010e;
            public const int DiagnosticSeverityGroup = 0x010f;
            public const int SetSeverityError = 0x0110;
            public const int SetSeverityWarning = 0x0111;
            public const int SetSeverityInfo = 0x0112;
            public const int SetSeverityHidden = 0x0113;
            public const int SetSeverityNone = 0x0114;
            public const int OpenDiagnosticHelpLink = 0x0116;
            public const int SetActiveRuleSet = 0x0118;
            public const int SetSeverityDefault = 0x011b;
 
            // Error list context menu command IDs for suppressions and setting severity
            public const int AddSuppressions = 0x011d;
            public const int AddSuppressionsInSource = 0x011f;
            public const int AddSuppressionsInSuppressionFile = 0x0120;
            public const int RemoveSuppressions = 0x0121;
            public const int ErrorListSetSeveritySubMenu = 0x0122;
            public const int ErrorListSetSeverityError = 0x0124;
            public const int ErrorListSetSeverityWarning = 0x0125;
            public const int ErrorListSetSeverityInfo = 0x0126;
            public const int ErrorListSetSeverityHidden = 0x0127;
            public const int ErrorListSetSeverityNone = 0x0128;
            public const int ErrorListSetSeverityDefault = 0x0129;
 
            // Analyze and Code Cleanup menu IDs
            public const int AnalysisScopeDefault = 0x0131;
            public const int AnalysisScopeCurrentDocument = 0x0132;
            public const int AnalysisScopeOpenDocuments = 0x0133;
            public const int AnalysisScopeEntireSolution = 0x0134;
            public const int AnalysisScopeNone = 0x0137;
 
            public const int GoToImplementation = 0x0200;
 
            public const int RunCodeAnalysisForProject = 0x0201;
            public const int RemoveUnusedReferences = 0x0202;
            public const int GoToValueTrackingWindow = 0x0203;
            public const int SyncNamespaces = 0x0204;
        }
    }
}