Cemre Mengü
Cemre Mengü

Reputation: 18754

c# - Auto incrementing AssemblyInformationalVersion

I would like to auto increment the AssemblyInformationalVersion so I can use Application.ProductVersion to obtain a product version for my program. I use [assembly: AssemblyInformationalVersion("4.1.*")] to define it however * does not increment the number as it is supposed to (I get the * as it is in the product version string). What should I do ? Any ideas ?

Upvotes: 2

Views: 866

Answers (2)

Marko Juvančič
Marko Juvančič

Reputation: 5890

We use Build Version Increment

Upvotes: 0

Shay
Shay

Reputation: 1768

I used this NuGet plugin in one of my project, it worked well: Auto Version Incrementer

Upvotes: 0

Related Questions