-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathVSCommandTable.cs
34 lines (33 loc) · 1.22 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
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer
// </auto-generated>
// ------------------------------------------------------------------------------
namespace AI_Studio
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string AI_StudioString = "2dd7016f-e0cf-41b5-bc1a-ca24bd6b9662";
public static Guid AI_Studio = new Guid(AI_StudioString);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int AI_MenuGroup = 0x1000;
public const int AI_CommandGroup = 0x1001;
public const int AI_Menu = 0x1002;
public const int AddUnitTests = 0x0000;
public const int AddSummary = 0x0001;
public const int AddComments = 0x0002;
public const int Refactor = 0x0003;
public const int Explain = 0x0004;
public const int CodeIt = 0x0005;
public const int SecurityCheck = 0x0006;
}
}