public AppExecutionProcessConstructor(CompilerRunner runner, string outputRoot, string appPath, IEnumerable <string> modules, IEnumerable <string> folders) : base(runner) { _outputRoot = outputRoot; _appPath = appPath; _modules = modules; _folders = folders; }
public R2RDumpProcessConstructor(CompilerRunner runner, string compiledExecutable, bool naked) : base(runner) { _compiledExecutable = compiledExecutable; _naked = naked; }
public CompilerRunnerProcessConstructor(CompilerRunner runner) { _runner = runner; }
public CompilationProcessConstructor(CompilerRunner runner, string outputRoot, string assemblyFileName) : base(runner) { _outputRoot = outputRoot; _assemblyFileName = assemblyFileName; }
public CompilationProcessConstructor(CompilerRunner runner, string outputFileName, IEnumerable <string> inputAssemblyFileNames) : base(runner) { _outputFileName = outputFileName; _inputAssemblyFileNames = inputAssemblyFileNames; }