I've got an executable file, and I would like to know which versions of the .NET framework this file needs to be started.
Is there an easy way to find this information somewhere?
|
I've got an executable file, and I would like to know which versions of the .NET framework this file needs to be started. Is there an easy way to find this information somewhere? |
||||
|
|
I think the closest you can reliably get is to determine what version of the CLR is required. You can do this by using ILDASM and looking at the "MANIFEST" node or Reflector and looking at the dissasembly view of the "Application.exe" node as IL. In both cases there is a comment that indicates the CLR version. In ILDASM, the comment is "// Metadata version" and in Reflector the comment is "Target Runtime Version". Here are examples for a .NET WinForms application named WindowsFormsApplication1.exe: ILDASM:
Reflector:
You can also look at the list of referenced assemblies and look for the reference with the highest version number. Again, using ILDASM looking at the "MANIFEST" node data:
And using Reflector, looking at the dissambly (still as IL) for each reference listed:
By finding the reference with the highest version metadata you can determine what version of the Framework that reference came from, which would indicate that you need the same version of the Framework installed for the application to run. That being said, I wouldn't treat this as 100% reliable, but I don't think it will change any time soon. |
|||
|
|
From code you can use Edit: Even better would be to use ildasm, open your assembly and then view the manifest for the assembly. The first line of the manifest will tell you the exact version of CLR that the assembly was built for. |
|||
|
|
|
A more simplified approach would be to use dotPeek and see what shows up in the tree. |
||||
|
|
|
Mono has a utility
output:
|
|||
|
|
|
You can use a tool called CorFlags.exe. It has been around since .NET 2.0, and I know for sure that it is included in the Windows SDK 7.0. By default (on Windows XP Pro) it is installed to C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin\CorFlags.exe. Provide it with the file path to a managed module (without any other command-line flags) to display its header information, which includes the version. Keep in mind that this utility is designed to modify the PE32 header of a module, so don't use any of the flags until you read the documentation carefully. |
|||
|
|
|
Or you can just find out which reference of System.Core it has. That will tell you the .NET Framework version this app is using. For 2.0 the version of System.Core will be 2.0.xxx.xxx. For 3.5 the version will be 3.5.xxx.xxx, etc. |
|||
|
|