I am using the Telerik MVC Extensions and have moved my Scripts folder in to the Content folder. So instead of ...
<script src="<%= Url.Content("~/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>
... I now have ...
<script src="<%= Url.Content("~/Content/Scripts/jquery-1.4.1.min.js") %>" type="text/javascript"></script>
I realise that I can turn off jQuery inclusion with the ScriptRegistrar().jQuery(false)
method, but how to I tell the Telerik MVC Extensions where the new "base" folder is?