문제

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>
도움이 되었습니까?

해결책

Use this syntax:

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

for example:

<devenv>
    <configuration>Debug|Win32</configuration>
</devenv>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top