I started to move one of my projects from .NET Framework to .NET Core (3.1) and I got a compiler error.
I have a class working with Bitmap but it can't be found in System.Drawing
. VS was so kind to tell me that it was moved to System.Drawing.Common
which is in system.drawing.common.dll.
Well... I can't add it as a reference bc I can't find it anywhere.
Where can I add the System.Drawing.Common
namespace to my project?