-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIVsProject.cs
More file actions
41 lines (34 loc) · 1.42 KB
/
IVsProject.cs
File metadata and controls
41 lines (34 loc) · 1.42 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
using System.Collections.Generic;
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Definition of a visual studio project model information.
/// </summary>
public interface IVsProject : IVsModel, IParent, IChildren
{
/// <summary>
/// The fully qualified path to the project file name.
/// </summary>
string Path { get; }
/// <summary>
/// Flag that determines if this visual studio project uses the legacy project model. If so then only basic capabilities and references will be available through code factory.
/// </summary>
bool LegacyProjectModel {get;}
/// <summary>
/// The default namespace for the project if it support .net framework or .net core. Otherwise this will be null.
/// </summary>
string DefaultNamespace { get; }
/// <summary>
/// The project languages that are supported in this project.
/// </summary>
IReadOnlyList<ProjectLanguage> ProjectLanguages { get;}
/// <summary>
/// The target frameworks this project supports as output.
/// </summary>
IReadOnlyList<VsProjectFramework> TargetFrameworks { get; }
}
}