-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCommandTable.cs
More file actions
27 lines (26 loc) · 951 Bytes
/
VSCommandTable.cs
File metadata and controls
27 lines (26 loc) · 951 Bytes
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
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by VSIX Synchronizer
// </auto-generated>
// ------------------------------------------------------------------------------
namespace simplicode
{
using System;
/// <summary>
/// Helper class that exposes all GUIDs used across VS Package.
/// </summary>
internal sealed partial class PackageGuids
{
public const string simplicodeString = "aa76e3f7-f95c-46ef-bfd7-5c9a8da6a8ac";
public static Guid simplicode = new Guid(simplicodeString);
}
/// <summary>
/// Helper class that encapsulates all CommandIDs uses across VS Package.
/// </summary>
internal sealed partial class PackageIds
{
public const int MyMenuGroup = 0x0001;
public const int OpenToolWindowCommand = 0x0100;
public const int SemanticAnalysis = 0x0101;
}
}