Description
Describe the bug
It is not possible convert implicitly convert type 'AdvancedSharpAdbClient.Models.Framebuffer' to 'System.Drawing.Image' when build using .NET 8.0.
Steps to reproduce the bug
Try implicitly convert type 'AdvancedSharpAdbClient.Models.Framebuffer' to 'System.Drawing.Image' using 'AdvancedSharpAdbClient for .NET 8.0:
var deviceData = AdbClient.GetDevices().First(x => x.Serial == serial);
var adbClient = new AdbClient();
var image = (Image)adbClient.GetFrameBuffer(deviceData);
Expected behavior
It should be possible convert implicitly convert type 'AdvancedSharpAdbClient.Models.Framebuffer' to 'System.Drawing.Image' like it is possible to do when build using .NET Framework 4.8.1.
Screenshots
NuGet package version
3.1.10
.NET Platform
.NET 8
Platform type
Windows
System version
Windows 11 x64
IDE
Visual Studio 2022
Additional context
This issue is NOT reproducible when build using .NET Framework 4.8.1.