Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

direct nuget where to put files

I am working with nuget and find it excellent with my MVC4 project. I use it for all my external dependencies.

I have run in to one small problem with it. For example, installing the jQuery package, it places the jQuery files in to the Scripts folder. My preference is that it places the javascript files in to a libraries folder within scripts. So instead of

Scripts/jquery-1.8.3.js

I want to place it in

Scripts/libraries/jquery-1.8.3.js

Yes I can manually move it but then I lose the features of nuget. Any way that I can direct where a package places the files like this?

like image 360
amateur Avatar asked Nov 12 '22 16:11

amateur


1 Answers

This is not supported yet dupe of NuGet scripts to different directory , nuget codeplex issue is here http://nuget.codeplex.com/workitem/1914

like image 67
Deepak Avatar answered Nov 15 '22 12:11

Deepak