-
Notifications
You must be signed in to change notification settings - Fork 1
/
VSCommandTable.cs
30 lines (28 loc) · 1.15 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
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer
// </auto-generated>
// ------------------------------------------------------------------------------
namespace ShieldVSExtension
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string guidPackageString = "311f3401-ccf0-489a-b402-97528dc6b439";
public static Guid guidPackage = new Guid(guidPackageString);
public const string guidShieldVSExtensionPackageCmdSetString = "ebf96a3a-1e33-42f6-b931-bd933ad6baba";
public static Guid guidShieldVSExtensionPackageCmdSet = new Guid(guidShieldVSExtensionPackageCmdSetString);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int MyMenuGroup = 0x1020;
public const int EnableId = 0x0200;
public const int ConfigurationId = 0x0100;
}
}