How can I make the program assembly version shown after compilation?

Whenever I right click an executable(for properties), I see five tabs, General, Version, Compatibility, security and summary.

I understand that it is taking from assembly.cpp.

However, I am not seeing version and summary in my compiled code
though I have modified assembly.cpp.

I am using Visual STudio 2003, mainly VC++ 2003.

Any help or links how to fix this issue

Thanks,



Answer this question

How can I make the program assembly version shown after compilation?

  • Chris Lovett

    Not sure if that is what you are looking for but could be similar:
    http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=139291&SiteID=1

    Hope this helps!

    Thanks,
      Ayman Shoukry
      VC++ Team

  • Geeta Mudili

    the version information that you are seeing in that dialog is the information for the PE (dll/exe) itself, not the assembly. confusing I know, but they are two separate things.
    in order to set the PE's version information you need to create an .rc file and build it into your PE. the thread that Ayman pointed to should be helpful in demonstrating how to do this.

    josh
    VC++ Project System developer



  • How can I make the program assembly version shown after compilation?