-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProjectLanguage.cs
More file actions
44 lines (37 loc) · 1.29 KB
/
ProjectLanguage.cs
File metadata and controls
44 lines (37 loc) · 1.29 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
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.VisualStudio
{
/// <summary>
/// Definition of the a language has compiler support within a target project.
/// </summary>
public enum ProjectLanguage
{
/// <summary>
/// The project supports the compile of the C# programming language.
/// </summary>
CSharp = 0,
/// <summary>
/// The project supports the compile of the visual basic programming language.
/// </summary>
VisualBasic = 1,
/// <summary>
/// The project supports the compile of the F# programming language
/// </summary>
FSharp = 2,
/// <summary>
/// The project supports the compile of the type script programming language.
/// </summary>
TypeScript = 3,
/// <summary>
/// The project supports the compile of the java script programming language.
/// </summary>
JavaScript = 4,
/// <summary>
/// Code factory could not determine the programming language.
/// </summary>
Unknown = 9999
}
}