Can I find to what target .NET dll was built looking into the file? -
i have bit of mess projects coming on 4.0 on 3.5
is possible find out version of .net dll built looking file (not code!) ?
you use ildasm.exe:
ildasm assembly.dll
then double click on manifest , @ version:
metadata version: v4.0.30319 (clr 4.0, meaning .net 4.0)
metadata version: v2.0.50727 (clr 2.0, meaning .net 2.0 .net 3.5)
Comments
Post a Comment