Reputation: 821
My question is really simple: I’m a UWP developer and I developed some UWP app for the Win Store. The problem is that I would want to use these apps on my own too, but I can’t, because I have to have deployed version from Visual Studio for testing new features and new versions.
To the point... is there a way, for an own UWP app, to have both “Store” and deployed version of it, right on the same PC with the same user?
Upvotes: 0
Views: 77
Reputation: 32785
For your scenario, we could make a project copy, and regard the copy as developer type, open the project with Visual Studio and double click Package.appxmanifest
file then find Packaging tab option modify the package name to another. click the Local Machine button. You will find the new app in the start menu and the app will not override the store version.
Upvotes: 2