Search code examples
jqueryjquery-validateasp.net-core-mvcbowerunobtrusive-validation

Remove jquery-validation-unobstructive from ASP.Net Core MVC


how can i remove the bower package for jquery-validation-unobstructive from my dependencies list ? i've managed to remove the other bower packager (bootstrap, jquery 2.1.1) but i can't seem to uninstall this one. all my attempts was from the Bower UI

enter image description here


Solution

  • Open a command line window in the project root (you should see a file named bower.json there) and run the bower uninstall command:

    >bower uninstall jquery-validation-unobtrusive -S
    

    It will remove the library from both the wwwroot folder and from bower.json.