How to properly remove PropertyChanged.Fody via NuGet
fody, fody-propertychanged, nuget
Solution
You need to also
Uninstall-Package Fody
Problem
I intended to use Fody.PropertyChanged in one of my projects, and it was properly added via NuGet: ``` Install-Package PropertyChanged.Fody ``` I realized, it was in the wrong project, so I used the uninstall command: ``` Uninstall-Package PropertyChanged.Fody ``` After that I added it to the proper project. Now, when I try to build my solution, I get the following error in the initial project that shouldn't have Fody installed: Fody: You don't seem to have configured any weavers. Try adding a Fody nuget package to your project. Have a look here http://nuget.org/packages?q=fody for the list of available packages. There is no reference to Fody in the project, I deleted the Fody reference from the `packages.config` file and there is no XML file. What else should I do?