x86、x64、および ARM プラットフォームを含む msbuild を使用して、Windows 10 UWP ストア アプリ用の .appxbundle をビルドしようとしています。Create App Packages ウィザードを使用して 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