如何在Linux中获取.Net文件的AssemblyVersion

时间:2010-10-15 21:42:08

标签: .net linux mono assemblyinfo

有没有办法在不使用mono的情况下在Linux中获取.Net可执行文件的AssemblyVersion?我想要的是一个脚本或命令,让我在Linux机器上获得AssemblyVersion。我试过了:

#strings file.exe | grep AssemblyVersion
但它只是字符串而不是数字。另请查看:
#file file.exe
但仅获得一般信息。

有什么想法吗?

4 个答案:

答案 0 :(得分:10)

尝试匹配跨越整行的版本号:

$ strings file.exe | egrep '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$'

在我的(少数)测试中,二进制文件的AssemblyVersion始终是最后的结果。

答案 1 :(得分:10)

根据Jb Evain的建议,您可以使用Mono Disassembler

monodis --assembly file.exe | grep Version

答案 2 :(得分:2)

同时也是distributed with Monoikdasm工具比monodis更健壮,不幸的是,该工具在许多DLL文件上崩溃并显示消息“ Segmentation fault:11”。维护者明确建议使用ikdasm而不是monodishttps://github.com/mono/mono/issues/8900#issuecomment-428392112

用法示例(具有monodis当前无法处理的程序集):

ikdasm -assembly System.Runtime.InteropServices.RuntimeInformation.dll | grep Version:

答案 3 :(得分:1)

这是一个真的老问题,几乎所有内容都已更改,但是从dotnet 2.1开始(因此您可以dotnet tool install),您可以安装dotnet-ildasm

dotnet tool install --tool-path . dotnet-ildasm

然后您可以使用此功能:

function dll_version {
  local dll="$1"
  local version_line
  local version

  version_line="$(./dotnet-ildasm "$dll" | grep AssemblyFileVersionAttribute)"
  # Uses SerString format:
  #   01 00 is Prolog
  #   SZARRAY for NumElem
  #   version chars for Elem
  #   00 00 for NamedArgs
  # See:
  #   https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-335.pdf#%5B%7B%22num%22%3A2917%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C87%2C321%2C0%5D
  [[ $version_line =~ \(\ 01\ 00\ [0123456789aAbBcCdDeEfF][0123456789aAbBcCdDeEfF]\ (.*)\ 00\ 00\ \)$ ]]
  dotcount=0
  for i in ${BASH_REMATCH[1]}; do
    if [[ $i =~ ^2[eE]$ ]]; then
      (( dotcount++ ))
    fi
    if (( dotcount == 3 )); then
      break
    fi
    echo -n -e "\u$i"
  done
}