使用 C# 在命令提示符下运行 nant 构建文件
我有一个带有 nant 的构建文件,现在我需要做的就是使用 c# 在命令提示符下执行它 我尝试了下面的方法,但无法构建它..
System.Diagnostics.Process.Start("exe -buildfile:d:\buildfile.build);
当我直接通过 cmd 提示符运行时,它正在工作
I have a build file with nant now all I need to do is execute it with command prompt using c#
I tried the below but I am not able to build it ..
System.Diagnostics.Process.Start("exe -buildfile:d:\buildfile.build);
and when I am running through cmd prompt directly it is working
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将 nant 设置为环境变量?
Have you setup nant as an environment variable?