Comment on Lessons Learned while Converting from ASP.NET to .NET CoreparentComments−tonyedgecombe10yI disagree, there is too much in the framework which ends up stuck there for ever, bloating the whole system.System.Drawing is a good example, if you read the msdn docs it is clearly not supported on ASP.Net or from a Windows Service.Libraries like imaging should be a nuget package.−blakeyrat10yThe fix to "System.Drawing is not cross-platform" isn't just deleting it. It's to rewrite it so it is cross-platform.
Comments
I disagree, there is too much in the framework which ends up stuck there for ever, bloating the whole system.
System.Drawing is a good example, if you read the msdn docs it is clearly not supported on ASP.Net or from a Windows Service.
Libraries like imaging should be a nuget package.
The fix to "System.Drawing is not cross-platform" isn't just deleting it. It's to rewrite it so it is cross-platform.