Domanda

C'è un modo per la versione del gruppo / file di un assembly in modalità misto da visualizzare in Esplora risorse?Sto cercando di indagare su alcuni problemi di versioni e sarebbe molto più veloce se potessi solo dare un'occhiata ai numeri di versione di Assembly.

È stato utile?

Soluzione

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.

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top