混在モードアセンブリバージョン番号を表示する方法Wind Windowsエクスプローラ

StackOverflow https://stackoverflow.com/questions/9520045

  •  15-11-2019
  •  | 
  •  

質問

混合モードアセンブリの組み立て/ファイルバージョンがWindowsエクスプローラで表示される方法はありますか?私はいくつかのバージョン管理の問題を調査しようとしています。

役に立ちましたか?

解決

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.

他のヒント

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top