开发者

How to specify the platform in devenv build CruiseControl.net

When building with msbuild we can give the platform as below

<msbuild>
<buildArgs>P开发者_Go百科latform=x86</buildArgs>
</msbuild>

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

<devenv>
???
</devenv>


Use this syntax:

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

for example:

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜