-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsReference.cs
More file actions
39 lines (31 loc) · 1.04 KB
/
IVsReference.cs
File metadata and controls
39 lines (31 loc) · 1.04 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using System;
using System.Collections.Generic;
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Definition of a visual studio project reference model information.
/// </summary>
public interface IVsReference:IVsModel
{
/// <summary>
/// The fully qualified path to the source reference.
/// </summary>
string FilePath { get; }
/// <summary>
/// Flag that determines if the reference has aliases.
/// </summary>
bool HasAliases { get; }
/// <summary>
/// Readonly list of the aliases assigned to this reference.
/// </summary>
IReadOnlyList<string> Aliases { get; }
/// <summary>
/// The type of the project reference.
/// </summary>
ProjectReferenceType Type { get; }
}
}