4

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.

Akash
  • 2,311
  • 1
  • 20
  • 37

2 Answers2

3

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.

dario_ramos
  • 7,118
  • 9
  • 61
  • 108
0

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

GregC
  • 7,737
  • 2
  • 53
  • 67