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