0
TimMackey created
I'm migrating a file from another working app into .Core project. I'm not able to find a package or library to supply the Graphics class, hence, the symbol remains unresolved.
using System.Drawing;
public int X, Y, Width, Height;
public int Draw_Box(Graphics gfx)
{
gfx.DrawRectangle(Pen, X, Y, Width, Height);
return Height;
}
The Graphics class is resolved in .Application project.
What package/library will resolve the reference in .Core project?