max
6e41c2579c
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.
10 lines
186 B
C#
10 lines
186 B
C#
namespace Nerfed.Compiler
|
|
{
|
|
public class Program
|
|
{
|
|
internal static void Main(string[] args)
|
|
{
|
|
Compiler.Compile(args[0], args[1]);
|
|
}
|
|
}
|
|
} |