I'm using Visual Studio 2010 Beta2 and I can't add a reference to: system.drawing
I've tried right click on the solution explorer but I can't find it there.
What gives?
I'm using Visual Studio 2010 Beta2 and I can't add a reference to: system.drawing
I've tried right click on the solution explorer but I can't find it there.
What gives?
Solution explorer is for adding references to external libraries.
It sounds like you just want to add the line
using System.Drawing;
to the top of one particular file.
In VS2010 Beta 2 the references list may not be automatically sorted because it loads asynchronously. You may need to wait for it to finish loading then click the column header to sort.
Here is all you need to do in VS 2010:
Solution Explorer right click on the References folder of your project Add Reference. Assemblies category there is a sub category of Framework. If that is selected you should see a list of all of the Microsoft .NET Framework librariesSystem.Drawing and double click it.Then your project will have the reference added to it!