We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows Phone 81 projects need to compile for ARM must use the x86 msbuild.exe... So need to be able to specify:
ARM
x86
.SetPlatformTarget(PlatformTarget.ARM) .SetMSBuildPlatform(MSBuildPlatform.x86);
and have the command line be like: ...\x86\msbuild.exe /p:Configuration=Release /p:Platform=ARM /target:Build "SomeWp81ARM.sln"
...\x86\msbuild.exe /p:Configuration=Release /p:Platform=ARM /target:Build "SomeWp81ARM.sln"
as mentioned in #523
The text was updated successfully, but these errors were encountered:
Add support for ARM processor cake-build#528
da68e42
Add and use MSBuildTarget as opposed to PlatformTarget cake-build#522
63bbaa6
b7a2d8c
a90054d
144f6aa
No branches or pull requests
Windows Phone 81 projects need to compile for
ARM
must use thex86
msbuild.exe...So need to be able to specify:
and have the command line be like:
...\x86\msbuild.exe /p:Configuration=Release /p:Platform=ARM /target:Build "SomeWp81ARM.sln"
as mentioned in #523
The text was updated successfully, but these errors were encountered: