How to specify the platform in devenv build CruiseControl.net

橙三吉。 提交于 2019-12-13 18:47:22

问题


When building with msbuild we can give the platform as below

<msbuild>
<buildArgs>Platform=x86</buildArgs>
</msbuild>

Do you know how to speficify the platform if we are using devenv?

<devenv>
???
</devenv>

回答1:


Use this syntax:

<devenv>
    <configuration>Configuration|Platform</configuration>
</devenv>

for example:

<devenv>
    <configuration>Debug|Win32</configuration>
</devenv>


来源:https://stackoverflow.com/questions/5905652/how-to-specify-the-platform-in-devenv-build-cruisecontrol-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!