Migrating to .NET Core: NuGet Package Dependencies
There are a few road blocks from migrating to .NET Core. One roadblock is .NET Framework API’s that are not included in NETStandard2.0. Another, is NuGet Package dependencies. I’ll cover the API surface in another post, but for this post I want to show you a couple quick ways you can check if your NuGet package dependencies are compatible with .NET Core. Checking NuGet.org If you head over to NuGet.org and search for the package you depend on, there you can click to expand the Dependencies heading which will list all the targets. Here’s an example of the MediatR package.… Read More »Migrating to .NET Core: NuGet Package Dependencies