Jed
Jed

Reputation: 10887

How to Change Setup Project Version

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

Answers (2)

tzg
tzg

Reputation: 666

Here is VS2022 solution:

Highlight your install project in the Solution Explorer:

enter image description here

Click on the Properties tab on the side bar:

enter image description here

That should give you important properties like version and others that are hard to find:

enter image description here

NOTE: If you don't have the side bar properties showing . . .

enter image description here

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.

enter image description here

Upvotes: 1

Jed
Jed

Reputation: 10887

Select the Setup project in Solution Explorer, then click the F4 function key. The Properties page will open up.

Upvotes: 12

Related Questions