Helpful Information
 
 
Category: .Net Development
show manifest version at runtime (vc++ .net)

Is there a way to show the version of the manifest(my program) at runtime? I know that .net saves this number in the exe-file so how can I get it out of there?

String *sVersion = Application::get_ProductVersion();

But this version number is different to that in the Manifest! Where can I change the version number which your code gives out?

I think it's in the AssemblyInfo.cpp file which should be created with your project.

If you have an VERSION_INFO-Ressource you can use this to get Version-Infos:


label1->Text=this->ProductName;

label2->Text=this->ProductVersion;










privacy (GDPR)