Class Library / DLL Version

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I created a class library in C# and compiled a DLL containing those classes.
The created DLL has the version-number 0.0.0.0

I did not find yet how to define a version-number for a DLL.

Can somebody give me advice?
 
You could go to the AssemblyInfo.cs file and enter the version number there.

[assembly: AssemblyVersion("*.*.*.*")]

Hope this helps.
 
Back
Top