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>
Use this syntax:
<devenv> <configuration>Configuration|Platform</configuration> </devenv>
eg:
<devenv> <configuration>Debug|Win32</configuration> </devenv>