PackCheck
PackCheck is a dotnet tool for checking and upgrading versions of NuGet packages. For NodeJS projects I like to use npm-check-updates and not the built in npm update command. But why? Simple. I want to directly see in the package.json file which versions are installed. NCU does exactly that, it changes the versions in the package.json file.
When I started to learn C# I was searching for something similar over at nuget.org but could not find anything. So I thought building such a dotnet tool would be a nice way for exploring C#. After I built PackCheck and published it to NuGet I found out about the dotnet-outdated-tool 🤪.