-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCommandTable.cs
More file actions
36 lines (34 loc) · 1.45 KB
/
VSCommandTable.cs
File metadata and controls
36 lines (34 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer 1.0.45
// Available from https://marketplace.visualstudio.com/items?itemName=MadsKristensen.VsixSynchronizer64
// </auto-generated>
// ------------------------------------------------------------------------------
namespace QuickJump2022
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string QuickJump2022String = "a9dbbd24-a865-4aba-a916-b5cf41993d73";
public static Guid QuickJump2022 = new Guid(QuickJump2022String);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int MainCmdGroup = 0x0001;
public const int ShowMethodSearchForm = 0x0100;
public const int ShowFileSearchForm = 0x0200;
public const int ShowAllSearchForm = 0x0300;
public const int ShowCommandSearchForm = 0x0400;
public const int ShowKnownCommandSearchForm = 0x0500;
public const int TestCommand = 0x0600;
public const int RefreshPreloadedData = 0x0700;
public const int ShowFastFetchCommandSearchForm = 0x0800;
public const int ShowCanonicalCommandSearchForm = 0x0900;
}
}