我正在尝试使用包含 x86、x64 和 ARM 平台的 msbuild 为我的 Windows 10 UWP Store 应用程序构建一个 .appxbundle。我可以使用创建应用程序包向导从 VS2015 RTM 执行此操作,但是在使用 msbuild 时出现错误。知道我做错了什么吗?
我的命令行:
msbuild HelloWorld.csproj /p:Configuration=Release;AppxBundle=Always
我得到的错误:
"E:\TestApps\HelloWorld.csproj" (default target) (1) ->
(_CreateBundle target) ->
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\AppxPackage\Microsoft.AppXPackage.Targets(3631,5): error MSB3030: Could not copy the file "E:\TestApps\bin\x64\Release\HelloWorld_1.0.4.0_x64.appx" because it was not found. [E:\TestApps\HelloWorld.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\AppxPackage\Microsoft.AppXPackage.Targets(3631,5): error MSB3030: Could not copy the file "E:\TestApps\bin\ARM\Release\HelloWorld_1.0.4.0_ARM.appx" because it was not found. [E:\TestApps\HelloWorld.csproj]
谢谢, C