Why can't I delete a package using NuGet?

asp.net, asp.net-mvc, asp.net-mvc-4, nuget, twitter-bootstrap

Solution

Use Uninstall-Package command:

PM> Uninstall-Package Bootstrap [-ProjectName [Uninstall from this project]]

If `ProjectName` parameter is omitted, the default project is chosen. Use the `-Force` flag to uninstall the package, even if there are dependencies on it.

Hope this helps.

Problem

I installed twitter bootstrap from NuGet, then I figured out I didn't need it anymore. Just for the sake of file size I want to delete this package files from my project folders. How can I achieve this without deleting important files?

Original source