1

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>
CharithJ
  • 46,289
  • 20
  • 116
  • 131

1 Answers1

3

Use this syntax:

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

for example:

<devenv>
    <configuration>Debug|Win32</configuration>
</devenv>
Community
  • 1
  • 1
Rick Sladkey
  • 33,988
  • 6
  • 71
  • 95