get the assembly version

  • Thread starter Thread starter Thomas Wegener
  • Start date Start date
T

Thomas Wegener

I'm new in the .net environment.
How can I get the current version, from my own created assembly, [assembly:
AssemblyVersion("6.60.0.10")] ?

Thanks Thomas
 
Hello Thomas,

I think the following line will get you the result:

System::Reflection::Assembly::GetExecutingAssembly()->GetName()->Version->ToString();
 
thanks a lot, it works.
Thomas

Sebastian Dau said:
Hello Thomas,

I think the following line will get you the result:


System::Reflection::Assembly::GetExecutingAssembly()->GetName()->Version->ToString();

Thomas Wegener said:
I'm new in the .net environment.
How can I get the current version, from my own created assembly,
[assembly: AssemblyVersion("6.60.0.10")] ?
 
Back
Top