When I try to add a reference to System.Drawing.dll v 2.0, v 4.0 is referenced instead. How can I force the older version while still targeting for 4.0 (overall)?
Printable View
When I try to add a reference to System.Drawing.dll v 2.0, v 4.0 is referenced instead. How can I force the older version while still targeting for 4.0 (overall)?
You can't. System.Drawing.dll is part of the .NET Framework and if you're targeting .NET 4.0 then you're using using v4 DLLs from the Framework. Why do you think you need to do this?
I don't anymore. Thanks.