Answered How to change a DLL version ?!

  • Tuesday, August 12, 2008 2:46 PM
     
     
    Hi all
    I need to change the version from a DLL. My (noob) question is: where can i change the version, on the code?
    If my program was in C language instead of C# what was the difference? What is the methods that i need to use to change it?
    I have only a dll...i don't have "AssemblyVersion" files...

    thanks for the help

All Replies

  • Tuesday, August 12, 2008 3:01 PM
    Moderator
     
     Answered
    1. Right click on your project (the top node).
    2. Click properties.
    3. Go to the "Application" tab.
    4. Click "Assembly Information".
    5. Change "Assembly Version" and/or "File Version".
    6. Click "OK".
    7. Click the save button.
    8. Recompile.
    David Morton - http://blog.davemorton.net/
    • Marked As Answer by jack 321 Thursday, August 14, 2008 9:10 AM
    •  
  • Tuesday, February 07, 2012 1:21 PM
     
     
    how can we achieve it using viual studio command prompt? like when building dll can we specify which version it should be??
  • Thursday, July 12, 2012 7:16 AM
     
     

    Use the below exe to change the version of dll

    ILMerge.exe library.dll /ver:1.2.3.4 /out:library2.dll


    Elamparithi