Reputation: 1
I am trying to create an app bundle file to upload my file for a release to the Microsoft store. Currently I have a UWP app, Desktop Application and a Packager project to connect the two. I am trying to create the bundle file through the Packager Project and this is the binding point for the UWP and Desktop Application. When I try to create the bundle file I am first associating it with the store and then creating the packages. The app is successful in Associating it with the store. When I try to create the bundle file the process just goes on but does not create the bundle file and just stops without any errors. Please can anyone suggest what is this due to and why is it not creating the bundle file?
Do I have to create two bundle files? One for UWP and the other for the Desktop? If I try to create the bundle file for only the UWP app it gets created successfully but my desktop application functions does not seem to work.
Also is there any architecture changes I would need to do?
Upvotes: 0
Views: 161
Reputation: 11
You do not need to create two bundles, one build with the UWP and Desktop app within the packaging project should be enough.
You say the process stops without errors, check the output window for errors that might not be showing up in the error window.
I would suggest checking out the Packaging samples which also has a link to an informative blog post on how to make these scenarios work.
Upvotes: 1