How to display assembly version number in mixed mode - is it Windows Explorer?

Is there a way for the version of the assembly / mixed-mode assembly file to appear in Windows Explorer? I am trying to investigate some version issues, and it would be much faster if I could just look at the version numbers of the assemblies.

+4
source share
2 answers

To implement C ++ / CLI projects, you need the old Win32.rc file (AssemblyInfo.cpp information is only built into the manifest and, therefore, cannot be visible in Windows Explorer IIRC). Right-click the project in Visual Studio Solution Explorer, Add-> Resource-> Version. I just tried this with one of our C ++ / CLI projects that use unmanaged code and are created using the / clr switch.

+3
source

Add the appropriate column (for example, “File Version”) by right-clicking on the headers in the detail view and selecting “Details ...”.

0
source

Source: https://habr.com/ru/post/1399219/


All Articles