-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVSCommandTable.cs
38 lines (37 loc) · 1.55 KB
/
VSCommandTable.cs
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
37
38
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer
// </auto-generated>
// ------------------------------------------------------------------------------
namespace HandyTools
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string HandyToolsString = "daafe9b8-3dc3-4cb6-a2ce-3959212fdc7c";
public static Guid HandyTools = new Guid(HandyToolsString);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int HandyTools_MenuGroup = 0x1000;
public const int HandyTools_CommandGroup = 0x1001;
public const int HandyTools_Menu = 0x1002;
public const int HandyTools_ViewMenuGroup = 0x1003;
public const int HandyTools_ViewCommandGroup = 0x1004;
public const int HandyTools_ViewMenu = 0x1005;
public const int CommandShowChatWindow = 0x2000;
public const int CommandCompletion = 0x2001;
public const int CommandExplanation = 0x2002;
public const int CommandTranslation = 0x2003;
public const int CommandTranslateAndReplace = 0x2004;
public const int CommandAddDocument = 0x2005;
public const int CommandPreviewDocument = 0x2006;
public const int CommandLineCompletion = 0x2007;
}
}