示例#1
0
 public CompilerArguments SetPath(CompilerPath value)
 {
     Path = value;
     return this;
 }
示例#2
0
 /// <summary>
 ///     Ctor.
 /// </summary>
 /// <param name="configuration">the compiler configuration</param>
 public CompilerArguments(Configuration configuration)
 {
     Configuration = configuration;
     Path = new CompilerPath();
     Options = new CompilerOptions();
 }