-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVsAutomationLibrary.cs
More file actions
49 lines (43 loc) · 1.57 KB
/
VsAutomationLibrary.cs
File metadata and controls
49 lines (43 loc) · 1.57 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
49
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Data model that implements the interface <see cref="IVsAutomationLibrary"/>
/// </summary>
public class VsAutomationLibrary:IVsAutomationLibrary
{
private string _libraryFilePath;
private List<VsLibraryConfiguration> _supportLibraries;
private List<VsActionConfiguration> _libraryActions;
#region Implementation of IVsAutomationLibrary
/// <summary>
/// Fully qualified path to the library file.
/// </summary>
public string LibraryFilePath
{
get { return _libraryFilePath; }
set { _libraryFilePath = value; }
}
/// <summary>
/// enumeration of the supporting libraries required for automation library to function.
/// </summary>
public List<VsLibraryConfiguration> SupportLibraries
{
get { return _supportLibraries; }
set { _supportLibraries = value; }
}
/// <summary>
/// enumeration of the commands that are supported by this library.
/// </summary>
public List<VsActionConfiguration> LibraryActions
{
get { return _libraryActions; }
set { _libraryActions = value; }
}
#endregion
}
}