1

I have installed DevExpress but now I uninstalled it. When I create a new project in Visual Studio 2022, then click on "build" and run, I get this error below. I guess Visual Studio is still searching for DevExpress files. I tried to remove all DevExpress extensions from Visual Studio, but that did not work. I tried also uninstall Visual Studio 2022 and reinstall it. How can I completely uninstall DevExpress from Visual Studio? Or is there an any method to clean visual studio to default settings?

error

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Ahmet Koca
  • 13
  • 3

1 Answers1

1

The issue you mentioned is related to the Package sources settings (Tools->Options-> type 'nuget'): Package sources options To avoid using unneeded sources you should follow the recommendations from the Package Sources help article:

  • To disable a package source, clear the box to the left of the name in the list.
  • To remove a package source, select it and then select the X button.
DmitryG
  • 17,677
  • 1
  • 30
  • 53
  • I found the machine-wide DevExpress package source and it was unchecked already. I tried to remove it by using X button but whenever i click on the DevExpress package source option button was disabled. I solved the problem by deleting "C:\Program Files (x86)\NuGet\Config" folder. Thanks for the help. – Ahmet Koca Dec 29 '21 at 16:51