Question

Is there a way for the assembly/file version of a mixed mode assembly to be displayed in windows explorer? I'm trying to investigate some versioning issues and it would be much quicker if I could just glance at the version numbers of assemblies.

Was it helpful?

Solution

C++/CLI projects need an old Win32 .rc file to achieve this (AssemblyInfo.cpp's info is only embedded in the manifest and thus can't be seen by Windows Explorer, IIRC). Right-click your project in Visual Studio's solution explorer, Add->Resource->Version. I just tried it with one of our C++/CLI projects, which use unmanaged code and are built with the /clr switch.

OTHER TIPS

Add the relevant column (File Version, for example) by right-clicking on the headers in detail view, and selecting More... option.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top