I'm starting with MVC6 and I'm trying to use some jQuery-UI elements.
After installing the package, I cannot find the script files of jQuery-UI. While lot of tutorials on the internet tell that the files should be stored in Scripts folder (for example: <script src="@Url.Content("~/Scripts/jquery-ui-1.10.4.min.js")"></script>
), it seems that it isn't the case with MVC6.
I saw this question (How to get JQuery-UI to work with ASP.NET MVC6?) in which the file is retrieved from jQuery site : <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
.
Is there any way to have files stored on our server as before ? Where are these files stored in MVC6 project ?
Thanks.