Is there any way to obtain the AssemblyVersion of a .Net executable in Linux without using mono? What I am trying to have is a script or command that will let me obtain the AssemblyVersion on Linux boxes. I tried:
#strings file.exe | grep AssemblyVersion
but it only the string and not the number. Also checked with:#file file.exe
but only got general information.
Any ideas?