You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using System.Drawing.ColorConverter in a .NET Framework app while Svg.Skia is installed results in the following error:
The type 'ColorConverter' exists in both 'Svg.Custom, Version=2.0.0.4, Culture=neutral, PublicKeyToken=dafe96fe6c845a74' and 'System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
I have not been able to find any workaround which does not result in that error.
Reproduction steps:
Create a new solution and project in Visual Studio using the Console App (.NET Framework) preset (It has to be a .NET Framework app, else the error doesn't happen)
Write some code which includes the line var colorConverter = new ColorConverter();
Verify that it compiles
Install Svg.Skia via NuGet
Observe the error
The text was updated successfully, but these errors were encountered:
Using System.Drawing.ColorConverter in a .NET Framework app while Svg.Skia is installed results in the following error:
I have not been able to find any workaround which does not result in that error.
Reproduction steps:
var colorConverter = new ColorConverter();
The text was updated successfully, but these errors were encountered: