Nerfed/Nerfed.Compiler/Program.cs

15 lines
315 B
C#
Raw Normal View History

2024-07-23 22:31:19 +02:00
namespace Nerfed.Compiler;
public class Program
{
2024-07-23 22:31:19 +02:00
internal static void Main(string[] args)
{
2024-07-23 22:31:19 +02:00
if (args.Length != 2)
{
2024-07-23 22:31:19 +02:00
Console.WriteLine("projectFilePath, configuration (Debug, Test, Release)");
return;
}
2024-07-23 22:31:19 +02:00
Compiler.Compile(args[0], args[1]);
}
}