-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVsActionConfiguration.cs
More file actions
48 lines (42 loc) · 1.43 KB
/
VsActionConfiguration.cs
File metadata and controls
48 lines (42 loc) · 1.43 KB
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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Data model class that implements the interface <see cref="IVsActionConfiguration"/>
/// </summary>
public class VsActionConfiguration:IVsActionConfiguration
{
private string _commandAssemblyFullName;
private string _title;
private VsCommandType _visualStudioActionType;
#region Implementation of IVsActionConfiguration
/// <summary>
/// The assembly full name for an command.
/// </summary>
public string ActionAssemblyFullName
{
get { return _commandAssemblyFullName; }
set { _commandAssemblyFullName = value; }
}
/// <summary>
/// The title that is assigned to the command.
/// </summary>
public string Title
{
get { return _title; }
set { _title = value; }
}
/// <summary>
/// The type of visual studio command being loaded.
/// </summary>
public VsCommandType VisualStudioActionType
{
get { return _visualStudioActionType; }
set { _visualStudioActionType = value; }
}
#endregion
}
}