C# Version Info

  • Thread starter Thread starter Dave Cullen
  • Start date Start date
I don't know VC++ 6, could it be that you are looking for the Assembly.Info
file? In this file you can set version info, copyright info, ...

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan
 
Dave,

Jan is right - the AssemblyInfo.cs file is the place where versioning
information is usually specified.
The compiler saves information from assembly-level attributes such as
AssemblyVersion to the automatically created VERSIONINFO resource in
addition to the managed metadata. You can easily check this by reviewing
properties of any managed DLL in the Windows Explorer.
 
Back
Top