Reputation: 31
Tried with msbuild command line as msbuild App1.sln /t:Publish /p:Configuration=Release
and also tried as described in http://blogs.msdn.com/b/wsdevsol/archive/2014/02/12/create-a-windows-store-appx-package-and-sign-it.aspx, only appx packages are built which cannot be used to submit to store.
Upvotes: 3
Views: 1639
Reputation: 25
We're using option: /p:UapAppxPackageBuildMode=StoreUpload
There's a good related blog post here: https://blogs.msdn.microsoft.com/wsdevsol/2016/01/08/windows-store-app-projects-stopped-generating-the-appxupload-file-after-installing-vs-2015-update-1/
And some more specific documentation from Microsoft on this option
Upvotes: 1