Reputation: 147
I downloaded and added into references Extended WPF Toolkit (http://wpftoolkit.codeplex.com/releases/view/96972), but ended up not using it. Now I want to remove it from my solution, but don't know how. I tried deleteng the packages folder, but it gets downloaded automatically when compiling the project. Also tried finding it among references, but I just couldn't find it. I'm using Visual Studio 2015. How can I permanently remove the toolkit?
Upvotes: 2
Views: 808
Reputation: 863
Right click on project ->Manage Nuget packages ->Installed packages
click on Extended.Wpf.Toolkit
from the list->Uninstall
Upvotes: 1
Reputation: 2842
If I'm not wrong. You have installed it via Nuget
packages that will automatically restore the missing packages. Give a try on this.
Go to the TOOLS -> Library Package Manager -> Package Manager Console
and enter the following:
Uninstall-Package Extended.Wpf.Toolkit
Upvotes: 0