views:

258

answers:

1

I have a managed c++ project.

How do I make the version information of the DLL (as seen in explorer and used by installers) match the version information generated in the Assembly Version atttribute?

AssemblyInfo.cpp:

[assembly:AssemblyVersion("5.1.*")];

The problem is discussed here.

A: 

Also set the AssemblyFileVersionAttribute and AssemblyInformationalVersionAttribute.

Richard
Will this magically translate into version information, even in a Managed C++ DLL?
Adam Tegen
It is documented (see linked pages) to do so. There is nothing giving exceptions. If the C++/CLI doesn't follow, would be a good reason to a comment to MSDN :-)
Richard