Reputation: 10887
I have a Setup project that I built a while ago in VS2010 and have recently ported that project into VS2013.
I installed the Microsoft Visual Studio Installer Projects extension and my Setup project compiled fine.
However, I cannot figure out how to change the version of my Setup project without manually changing the .vdproj
file. In other words, in VS2010, I was able to go to a Properties page of the Setup project and change the version there - and VS would respond with a warning that I should change the GUID of the project as well. - That feature is no longer in this new extension that I can find.
How do I change the Setup project version in the new Visual Studio Installer Project
extension?
Upvotes: 7
Views: 6831
Reputation: 666
Here is VS2022 solution:
Highlight your install project in the Solution Explorer:
Click on the Properties tab on the side bar:
That should give you important properties like version and others that are hard to find:
NOTE: If you don't have the side bar properties showing . . .
Right click one of your Project Output Objects and that will create the tab and open that objects properties. Then select your install project in the Solution Explorer again. The properties tab will be there. You can now toggle it as long as you don't X it out when the properties page is open.
Upvotes: 1
Reputation: 10887
Select the Setup project in Solution Explorer
, then click the F4
function key. The Properties
page will open up.
Upvotes: 12