Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to see what version of .NET an assembly was built in?

I don't need to do it from code or anything. Just need to find out from windows.

like image 209
Abe Miessler Avatar asked Dec 23 '22 00:12

Abe Miessler


2 Answers

You can use Reflector

For example if you open log4net in reflector, you can see it's Target Runtime.

alt text

PS: BTW this new upload image feature is really cool

like image 174
Carlos Muñoz Avatar answered Apr 27 '23 00:04

Carlos Muñoz


You can't easily find out without checking dependencies.

You can use .NET reflector or Dependency Walker to do that.

like image 33
Merlyn Morgan-Graham Avatar answered Apr 27 '23 00:04

Merlyn Morgan-Graham