Reputation: 331
Every time a new version of the project is built, the installer project in the solution gets updated as well. When I take that new MSI created, and run it on a machine which has an earlier version of it, will it automatically update the older one?
Upvotes: 1
Views: 611
Reputation: 44605
You can control this in the setup project's properties; if you do not change product ID and package ID (those are GUIDs for what I remember) and at every build you update the version number in the setup project and you have also set the property to execute the update, then yes, you will get all running smooth as you assumed in your question.
Upvotes: 3