-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsCodeFactoryLoadStatus.cs
More file actions
34 lines (30 loc) · 1.32 KB
/
IVsCodeFactoryLoadStatus.cs
File metadata and controls
34 lines (30 loc) · 1.32 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2021 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.VisualStudio.Loader
{
/// <summary>
/// Status of loading all code factory visual studio commands from a CFX configuration.
/// </summary>
public interface IVsCodeFactoryLoadStatus
{
/// <summary>
/// Flag that determines if visual studio commands were able to be loaded for the code factory package.
/// </summary>
bool IsLoaded { get; }
/// <summary>
/// Flag that determines if errors occurred while loading the code factory commands.
/// </summary>
bool HasErrors { get; }
/// <summary>
/// The error messages that was captured while trying to load the code factory commands. This will be null if <see cref="HasError"/> is false.
/// </summary>
List<string> ErrorMessages { get; }
/// <summary>
/// Enumeration of the factory commands that were loaded. This will be an empty enumeration if <see cref="IsLoaded"/> is false.
/// </summary>
IEnumerable<IVsCommandInformation> VisualStudioFactoryActions { get; }
}
}