A NuGet Package Manager for Neovim
- Show latest version as diagnostics after opening or updating a
.csprojfile - Toggle "Include prerelease"
:NugetToggleIncludePrerelease - Update all NuGet packages
- For a single project
- For all projects in a solution
-
nuget.configsupport - Autocompletion for package versions while editing
.csprojfiles - Manage packages solution-wide (similar to Visual Studio)
Using lazy.nvim
{
'Speiser/nuget.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
config = function()
require('nuget').setup()
end,
}