I intended to use Fody.PropertyChanged in one of my projects and was correctly added via NuGet:
Install-Package PropertyChanged.Fody
I realized that this was a wrong project, so I used the delete command:
Uninstall-Package PropertyChanged.Fody
After that I added it to the corresponding project.
Now, when I try to create my solution, I get the following error in the original project, which Fody should not have installed:
Fody: It seems you haven't tuned the weavers. Try adding the Fody nuget package for your project. Have a look here http://nuget.org/packages?q=fody for a list of available packages.
There is no Fody link in the project, I deleted the Fody link from the packages.config file and the XML file is missing.
What else should I do?
source share