How to specify the platform in devenv build Cruise

2019-08-04 03:18发布

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>

1条回答
你好瞎i
2楼-- · 2019-08-04 03:48

Use this syntax:

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

for example:

<devenv>
    <configuration>Debug|Win32</configuration>
</devenv>
查看更多
登录 后发表回答