mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 15:16:33 -08:00
9 lines
259 B
C#
9 lines
259 B
C#
namespace DotnetUtils;
|
|
|
|
public static class Globals {
|
|
public static readonly Dictionary<string, (string codefileExtension, string projExtension)> LangData = new() {
|
|
{ "csharp", ("cs", "csproj") },
|
|
{ "vbnet", ("vb", "vbproj") }
|
|
};
|
|
}
|