15 lines
315 B
C#
15 lines
315 B
C#
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]);
|
|
}
|
|
} |