Please note, that to build the project, you need to have installed the .NET 10 SDK or a newer or a compatible version, depending on the version you want to build. You can download it from the official Microsoft .NET website: https://dotnet.microsoft.com/en-us/download
You can clone the repository using git
cd a-base-directory-you-want-to-clone-togit clone https://github.com/rychlmoj/dotnet-tools-outdatedcd dotnet-tools-outdated/src/DotNetToolsOutdateddotnet pack -c release -o nupkgThe NuGet package created by the pack command is located at ./nupkg or at src/DotNetToolsOutdated/nupkg directories.
dotnet tool install -g dotnet-tools-outdated --add-source ./nupkgThis time, as usual way:
dotnet tool uninstall -g dotnet-tools-outdatedAlternatively, if you want update from NuGet package having newer version, you don't need to uninstall, but just update :
dotnet tool update -g dotnet-tools-outdated --add-source ./nupkg