2

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?

Tomáš Zajda
  • 147
  • 1
  • 15
  • "it gets downloaded automatically when compiling" - do you mean toolkit libraries still exists in bin directory after you compiling solution? Did you tried to *clear* solution (through right click on solution name in solution explorer) or delete bin folder *manually*? – Sam Mar 13 '16 at 19:26

2 Answers2

1

Right click on project ->Manage Nuget packages ->Installed packages click on Extended.Wpf.Toolkit from the list->Uninstall

droidev
  • 7,352
  • 11
  • 62
  • 94
Noxious Reptile
  • 838
  • 1
  • 7
  • 24
0

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

Gopichandar
  • 2,742
  • 2
  • 24
  • 54