Adding version info to project

  • Thread starter Thread starter Lars Black
  • Start date Start date
L

Lars Black

I guess I'm overlooking the obvious, but how do I add version info to my
application?

Cheers,
Lars
 
See the AssemblyInfo.cs (or .vb) file in your project. This is created with
a default set of assembly-wide attributes for AssemblyVersion as well as
description, companyname etc information. By default your assembly (dll or
exe) is given the version 1.0.* which means the build number is incremented
automatically each time you build the project and the major and minor
versions are fixed at 1.0.

Peter
 
See the AssemblyInfo.cs (or .vb) file in your project. This is created
with

Thanks, exactly what I was looking for! I was browsing through all the
project options and couldn't find it..

Cheers,
Lars
 
Back
Top