I developed an asp.net mvc application to manage some business process in our organisation. This application use the following main frameworks :
- Asp.NET MVC 5.0;
- Entity framework 6.0 to manage db access;
- MS Identity 2.0 to manage security : users, roles, access authorizations...;
- Bootstrap;
I noticed that the packages directory of this solution has become very huge(more than 350 MB). I tried to use the "Remove unused packages" feature of ReShaper but it did not significantly reduce the size of the packages folder. I think that there's some unnecessary packages that must be removed.So, my questions are :
Is it normal to have a packages directory with a size more than 350 MB for a simple asp.net MVC solution ?
How could I reduce the size of this directory and remove all unused and unnecessary packages?
Thanks for your help.