Sponsor: Do you build complex software systems? See how NServiceBus makes it easier to design, build, and manage software systems that use message queues to achieve loose coupling. Get started for free.
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. You can see which Platforms and versions of .NET Standard it supports. And for each target ,which dependencies it has under that target.I Can has .NET Core
The folks at Octopus Deploy released icanhasdot.net. Here’s what how it works:Upload your project’s packages.config, project.json, paket.dependencies and *.csproj files for analysis and we will build a visualization of the packages and whether .NET Standard versions are available on nuget.orgGive it try to see which NuGet packages you consume that are targeting .NET Standard. Another interesting feature on the site is the Statistics page which shows Unsported and Supported packages that have been scanned. I really am amazed how many library authors picked up on and supported .NET Standard.