-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsFactoryConfiguration.cs
More file actions
45 lines (39 loc) · 1.53 KB
/
IVsFactoryConfiguration.cs
File metadata and controls
45 lines (39 loc) · 1.53 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2022 CodeFactory, LLC
//*****************************************************************************
using System;
using System.Collections.Generic;
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Configuration model definition all data needed to load a code factory configuration into visual studio.
/// </summary>
public interface IVsFactoryConfiguration
{
/// <summary>
/// The name assigned to this automation configuration.
/// </summary>
string Name { get;}
/// <summary>
/// The unique identifier that is assigned to the factory configuration.
/// </summary>
Guid Id { get;}
/// <summary>
/// The version of the CodeFactory SDK that was used to build the automation.
/// </summary>
string SdkVersion { get; }
/// <summary>
/// Enumeration of the support libraries that need to be loaded to run the code factory libraries.
/// </summary>
List<VsLibraryConfiguration> SupportLibraries { get;}
/// <summary>
/// Enumeration of the code factory libraries that need to be loaded.
/// </summary>
List<VsLibraryConfiguration> CodeFactoryLibraries { get;}
/// <summary>
/// Enumeration of the commands to be loaded into the code factory.
/// </summary>
List<VsActionConfiguration> CodeFactoryActions { get;}
}
}