14 lines
499 B
Plaintext
14 lines
499 B
Plaintext
// Run with: sh ./T4/Generators.sh
|
|
|
|
// Workaround to start the compile-time code generation
|
|
// repl.it lacks T4, if the generated code is out of sync it's not
|
|
// possible to build main.exe, and there can't be a fallback Main
|
|
// method with a .cs extension (the C# compiler complains there are
|
|
// two implementations of Main, and repl.it's command-line lacks
|
|
// the option to specify which class to use).
|
|
|
|
public static class MainClass {
|
|
public static void Main() {
|
|
Generators.Generate();
|
|
}
|
|
} |