extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40477
This commit is contained in:
David Anderson 2007-02-12 05:56:27 +00:00
parent ce7f2ae23b
commit 1ac8d82d90

View File

@ -75,14 +75,15 @@ namespace builder
info.WorkingDirectory = path;
info.FileName = cfg.BuilderPath;
info.Arguments = "/rebuild " + lib.ReleaseBuild + " " + projectFile;
info.UseShellExecute = false;
if (cfg.BuildOptions != null)
{
info.Arguments += " " + cfg.BuildOptions;
info.Arguments = cfg.BuildOptions + " ";
}
info.Arguments += "/rebuild " + lib.ReleaseBuild + " " + projectFile;
Process p = Process.Start(info);
p.WaitForExit();
p.Close();