views:

56

answers:

1

When I create a new ASP.NET project in Visual Studio 2010, it creates the scripts directory, like it should, however the version of JQuery it sticks under the scripts directory is an old version of JQuery. Version 1.36 I believe. How can I update this so that Visual Studio 2010 will include the newest version of jquery? I know I can remove it and manually add it, but I don't want to have to do this everytime I create a new project.

+3  A: 

Have a look here:

C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\Web\CSharp\1033

(obviously, adjusting the path to your local PC if needed, and there is a separate folder for VB there as well)

Every .zip file is a project template. Update as needed.

Pavel Minaev
This is perfect. Thanks!
icemanind