-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDotNetLanguage.cs
53 lines (46 loc) · 1.1 KB
/
DotNetLanguage.cs
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
49
50
51
52
53
namespace HostApi;
/// <summary>
/// The .NET language.
/// </summary>
public enum DotNetLanguage
{
/// <summary>
/// C#
/// </summary>
CSharp,
/// <summary>
/// F#
/// </summary>
FSharp,
/// <summary>
/// Visual Basic
/// </summary>
VisualBasic,
/// <summary>
/// SQL
/// </summary>
Sql,
/// <summary>
/// JSON
/// </summary>
Json,
/// <summary>
/// TypeScript
/// </summary>
TypeScript
}
internal static class DotNetLanguageExtensions
{
// ReSharper disable once UnusedParameter.Global
public static string[] ToArgs(this DotNetLanguage? language, string name, string collectionSeparator) =>
language switch
{
DotNetLanguage.CSharp => [name, "\"C#\""],
DotNetLanguage.FSharp => [name, "\"F#\""],
DotNetLanguage.VisualBasic => [name, "VB"],
DotNetLanguage.Sql => [name, "VB"],
DotNetLanguage.Json => [name, "JSON"],
DotNetLanguage.TypeScript => [name, "TypeScript"],
_ => []
};
}