-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsLibraryConfiguration.cs
More file actions
48 lines (41 loc) · 1.75 KB
/
IVsLibraryConfiguration.cs
File metadata and controls
48 lines (41 loc) · 1.75 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 that stores all the information needed to load a DLL into visual studio.
/// </summary>
public interface IVsLibraryConfiguration
{
/// <summary>
/// Flag that determines if the assembly is stored in the Global Assembly Cache on the computer.
/// </summary>
bool IsStoredInGac { get;}
/// <summary>
/// Flag that determines if their were errors loading the library configuration.
/// </summary>
bool HasErrors { get;}
/// <summary>
/// Enumeration that stores the type of error that has occurred while loading the library configuration.
/// </summary>
LibraryErrorType ErrorType { get;}
/// <summary>
/// Stores the exception message for the error.
/// </summary>
string ErrorDetails { get;}
/// <summary>
/// File path to where the assembly is found. This will be null if the assembly is stored in the GAC.
/// </summary>
string AssemblyFilePath { get; }
/// <summary>
/// The fully qualified name of the assembly to be loaded. This will be null if not stored in the GAC.
/// </summary>
string AssemblyStrongName { get;}
/// <summary>
/// Flag that determines if the PDB file is found wit the assembly in the file path. This will be false if it is stored in the GAC.
/// </summary>
bool HasDebugInformation { get;}
}
}