namespace Nerfed.Compiler; public class Program { internal static void Main(string[] args) { if (args.Length != 2) { Console.WriteLine("projectFilePath, configuration (Debug, Test, Release)"); return; } Compiler.Compile(args[0], args[1]); } }