How to determine the platform in devenv build CruiseControl.net

When creating with msbuild we can provide the platform below

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

Do you know how to define a platform if we use devenv?

<devenv>
???
</devenv>
+1
source share
1 answer

Use this syntax:

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

eg:

<devenv>
    <configuration>Debug|Win32</configuration>
</devenv>
+3
source

All Articles