Пример #1
0
        private void CompileModule(string name)
        {
            CompileCommand command = new CompileCommand();

            command.ParseArguments(new string[]
            {
                "-module",
                name
            });
            command.Run();
        }
Пример #2
0
        private void Compile()
        {
            foreach (SlipeModule module in config.modules)
            {
                CompileModule(module.name);
            }

            CompileCommand compile = new CompileCommand();

            compile.ParseArguments(new string[0]);
            compile.Run();
        }