GhostOverlay
GhostOverlay copied to clipboard
Update app manifest to allow for running local/prod side-by-side
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.
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.
Interesting. Thanks for this, I'll check it out...