-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsCommandInformation.cs
More file actions
30 lines (25 loc) · 931 Bytes
/
IVsCommandInformation.cs
File metadata and controls
30 lines (25 loc) · 931 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
28
29
30
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Interface that provides information used by code factory to load the command.
/// </summary>
public interface IVsCommandInformation
{
/// <summary>
/// Command title that will be displayed within visual studio.
/// </summary>
string CommandTitle { get; }
/// <summary>
/// An optional description that describes what this factory command is intended for.
/// </summary>
string CommandDescription { get; }
/// <summary>
/// The target type of command that is being loaded.
/// </summary>
VsCommandType CommandType { get; }
}
}