1

我有一个在 Visual Studio 2012 中创建的类库程序集。我想知道应该使用哪些参数来确保类库在 ARM、x86 和 x64 下适用于 WinRT。我目前将项目属性定义为 AnyCPU。

我需要做的就是定义 NETFX_CORE 常量吗?有没有我为 WinRT 或 CPU 指定的地方?

C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe MyClassLibrary.csproj
/t:Rebuild /p:Configuration=DEBUG /p:DefineConstants="NETFX_CORE"
4

1 回答 1

1

WinRT 和桌面应用程序一样——参数是/p:Platform=<name>. 例如:

msbuild MyClassLibrary.csproj /p:Configuration=Debug /p:Platform=ARM
于 2013-01-28T16:16:59.583 回答