Mubeena
Mubeena

Reputation: 31

How to build Windows 10 appxupload(ready to submit to store) package by command line

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

Answers (2)

Tom Soderling
Tom Soderling

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

VaclavD
VaclavD

Reputation: 2642

Try to add the /p:AppxPackageIsForStore=true parameter.

Upvotes: 2

Related Questions