forked from blinkbox/Git-Source-Control-Provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandId.bb.cs
64 lines (54 loc) · 2.01 KB
/
CommandId.bb.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="CommandId.bb.cs" company="blinkbox">
// TODO: Update copyright text.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace GitScc
{
/// <summary>
/// Defines the command ids used for blinkbox commands in the Visual Studio environment.
/// </summary>
public static partial class CommandId
{
/// <summary>
/// Identifies the Deploy command.
/// </summary>
public const int BlinkboxDeployId = 0x117;
/// <summary>
/// Identifies the SubmitTest command.
/// </summary>
public const int SubmitTestButtonId = 0x118;
/// <summary>
/// Identifies the SubmitTest command.
/// </summary>
public const int UnitTestButtonId = 0x119;
/// <summary>
/// Identifies the ToolsMenu command.
/// </summary>
public const int ToolsMenu = 0x401;
/// <summary>
/// Identifies the ToolsMenuGroup command.
/// </summary>
public const int ToolsMenuGroup = 0x402;
/// <summary>
/// Identifies the GitTfsCheckin command.
/// </summary>
public const int GitTfsCheckinButtonId = 0x403;
/// <summary>
/// Identifies the GitTfsGetLatest command.
/// </summary>
public const int GitTfsGetLatestButtonId = 0x404;
/// <summary>
/// Identifies the GitTfs CleanWorkspaces command.
/// </summary>
public const int GitTfsCleanWorkspacesButtonId = 0x405;
/// <summary>
/// Identifies the GitTfs Review command.
/// </summary>
public const int GitTfsReviewButtonId = 0x406;
/// <summary>
/// Identifies the GitTfs Cancel Review command.
/// </summary>
public const int GitTfsCancelReviewButtonId = 0x407;
}
}