joshhunt / GhostOverlay

"You're going to see a lot of things you won't understand"
GNU Affero General Public License v3.0
42 stars 9 forks source link

Update app manifest to allow for running local/prod side-by-side #9

Open fitzmill opened 4 years ago

fitzmill commented 4 years ago

Addresses #6 By appending a .Dev to the identity name of the app when deploying locally the windows store will allow you to install the version of the app currently available in the store (windows thinks that they are two separate apps). You can tell them apart from one another if you append a (Dev) to the display name of the app wherever it appears in the manifest. You can deploy locally and you can compare your changes against the current production version. image

Whenever you want to push an updated version to the windows store you'll have to remove the .Dev from the identity name or the store will think you're trying to publish a new application. You'll also have to remove the (Dev) from the display names.

joshhunt commented 4 years ago

Interesting. Thanks for this, I'll check it out...