Nerfed/Nerfed.Compiler/Program.cs
max 6e41c2579c started working on compiler project
the idea of the compiler project is to have a tool that generates and compiles the solution + csproj files for the project. This is then used by the editor or via the command line.
2024-07-21 04:38:31 +02:00

10 lines
186 B
C#

namespace Nerfed.Compiler
{
public class Program
{
internal static void Main(string[] args)
{
Compiler.Compile(args[0], args[1]);
}
}
}