您可以使用以下内容获取文件版本:
FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo("filename.exe");
但是如何获得特定EXE文件的汇编版本?
答案 0 :(得分:56)
来自此博客文章How to get assembly version without loading it:
AssemblyName.GetAssemblyName("filename.exe").Version
这样可以避免必须装入装配体。