I have spent a few hours trying to figure out why .Net Core 2.0 wouldn\'t load .Net framework 4.5.2 nuget packages.
Now I think it\'s time to ask...
What hap
Related answer: https://stackoverflow.com/a/54116368/10891544
To target multiple frameworks from a .net core project, open up your .csproj file and replace the TargetFramework tag with a new TargetFrameworks tag:
This should allow you to use .NET Framework packages from a .NET Core project. However, you will lose the ability to run your code cross-platform.