1

I'm using TeamCity as a CI tool.

In "Build Step" section I added an AssemblyInfo patcher build feature which updates assemblies version during build. A setup project builds for me an install for my application. After application install - assemblies have correct version.

But when I go to "Programs and Features" - for my application is displayed a totally different version value.

Could You tell me how to manage the version displayed in "Programs and Features"?

Dutts
  • 5,781
  • 3
  • 39
  • 61
DreadAngel
  • 772
  • 11
  • 30

3 Answers3

1

Version displayed in Programs and Features is not the exe version. It is the setup version.

To change that you've t modify the setup version.

Sriram Sakthivel
  • 72,067
  • 7
  • 111
  • 189
1

Programs and Features displays the Installer version. To change the version

  1. Select the Installer project
  2. Select Properties tab (Don't right click and go to property)
  3. You will find the Version property at the end with the default version is 1.0.0
Kurubaran
  • 8,696
  • 5
  • 43
  • 65
1

If you go to your Visual Studio setup project. Press F4 to get the properties (not exactly sure its F4, @AccessDenied says it's TAB). Locate the Version property in there.

See couple of other relevant answers for some additional info:

Community
  • 1
  • 1
oleksii
  • 35,458
  • 16
  • 93
  • 163