Reputation: 653
it is possible to get the information with which .NET Framework version a DLL was generated?
Thanks
Upvotes: 1
Views: 85
Reputation: 3413
This information is stored in the TargetFramework attribute of the assembly. You can read it with a tool like ILSpy, or by using reflection.
Upvotes: 1