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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top