cygwin - 使用开关运行 msbuild

发布于 2024-12-07 07:53:11 字数 425 浏览 1 评论 0原文

我正在尝试使用 bash 改进我们的构建自动化。我的 shell 脚本还有很多不足之处,但本质上我希望能够使用 bash shell 脚本来运行 MSBuild.exe 并传入某些构建开关。因此,在 myscript.sh 中有一行:

C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe /maxcpucount:8 /verbosity:q /p:Configuration=Debug C:/Myfolder/Main.sln 

由于 /p:Configuration=Debug,此操作失败。我可以肯定地说,如果没有它,MSBuild.exe 的执行是有效的。

有人可以帮忙吗?

I'm trying to improve our build automation using bash. My shell scripting leaves a lot to be desired but essentially I want to be able to use a bash shell script to run MSBuild.exe passing in certain build switches. So in myscript.sh there's a line :

C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe /maxcpucount:8 /verbosity:q /p:Configuration=Debug C:/Myfolder/Main.sln 

This fails due to the /p:Configuration=Debug. I can say that with certainty as without it the execution of MSBuild.exe works.

Can anyone help on this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青朷 2024-12-14 07:53:11

事实证明,这是由于

/p:

当使用 /property:Configuration=Debug 时它可以工作。

感谢您的帮助。

蒂姆

As it turns out it was due to

/p:

When using /property:Configuration=Debug it works.

Thanks for the help.

Tim

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文