C#: how to set version number of assembly

Viewed 73582

I have written a DLL in C# using VS2005.

Currently the DLL is showing a version number of 1.0.0.0.

How do I set this version number to something different?

6 Answers

If you need to change it on visual studio open your solution file then right click and select properties then select Application on that select assembly information than change version on assembly. enter image description here

Related