forked from AdrianWilczynski/CSharpToTypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
29 lines (27 loc) · 1.11 KB
/
Copy pathConstants.cs
File metadata and controls
29 lines (27 loc) · 1.11 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
using System.Collections.Generic;
namespace CSharpToTypeScript.Blazor
{
public static class Constants
{
public static IEnumerable<(string Name, string Url)> Sites => new[]
{
("GitHub", "https://github.com/AdrianWilczynski/CSharpToTypeScript"),
("NuGet", "https://www.nuget.org/packages/CSharpToTypeScript.CLITool"),
("Visual Studio Marketplace", "https://marketplace.visualstudio.com/items?itemName=adrianwilczynski.csharp-to-typescript"),
("Azure", "https://csharptotypescript.azurewebsites.net")
};
public static IReadOnlyList<(string DisplayName, string Name)> Themes = new List<(string, string)>
{
("Visual Studio Dark", "vs-dark"),
("Oceanic Next", "oceanic-next"),
("Blackboard", "blackboard"),
("Clouds Midnight", "clouds-midnight"),
("Merbivore", "merbivore"),
("Monokai", "monokai"),
("Night Owl", "night-owl"),
("Tomorrow Night", "tomorrow-night"),
("One Dark", "one-dark"),
("Nord", "nord")
};
}
}