I installed the NUnit3 console runner with extensions via Nuget. Since I've realized that was a mistake. I don't need all of the extensions but I cannot uninstall them due to dependencies.
Take a look at attachment, and the following XML from packages.config. Somehow Nunit.Console is installed according to the packages.config file but Visual Studio isn't showing me a way to uninstall it. What am I misunderstanding?
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit.Console" version="3.7.0" />
<package id="NUnit.ConsoleRunner" version="3.7.0" />
<package id="NUnit.Extension.NUnitProjectLoader" version="3.5.0" />
<package id="NUnit.Extension.NUnitV2Driver" version="3.6.0" />
<package id="NUnit.Extension.NUnitV2ResultWriter" version="3.5.0" />
<package id="NUnit.Extension.TeamCityEventListener" version="1.0.2" />
<package id="NUnit.Extension.VSProjectLoader" version="3.5.0" />
</packages>
I don't see Nunit.Console.3.7.0 as something that I can uninstall yet I get this error message.
"Unable to uninstall 'NUnit.Extension.NUnitProjectLoader 3.5.0' because 'NUnit.Console 3.7.0' depend(s) on it."
and
"Unable to uninstall 'NUnit.ConsoleRunner 3.7.0' because 'NUnit.Console 3.7.0' depend(s) on it."
Shawn