What a VS 2010 project for a simple HTML and JS project

Which VS 2010 project template would you use for a simple HTML and JS project, without ASP or other code. Just vanilla HTML / JS. I am using an empty web project ("ASP.net blank web application"), still providing me with unnecessary files and directories. Anything better?

This question is not about JS extensions, such as comparing the capabilities of JavaScript Javascript extensions .

- Update as of August 15. -

I removed the additional directories and extension links. The bin folder is recreated whenever the application is created, but I can solve this problem at the Solution level by switching the assembly (configuration properties). webconfig is required for debugging - I can't get rid of this - so this is the best I get so far.

Damned - obj and bin directories are recreated when VS2010 is closed and reopened (preparation of the solution stage). So I have to live with some overhead of files / directories.

- Starting on August 18. - Guess that there is no better way to remove as much as possible and live with the remaining "garbage".

+7
source share
3 answers

Visual Studio web development is focused on creating ASP.NET projects , but you can create, without any problems, HTML and JS applications * removing additional directories * created for ASP.NET applications that need it.

Sincerely. Angel Manuel.

+4
source

Have you considered creating a website in a visual studio instead of using a web project? File → New → Website. It is still focused on developing asp.net, but may be more than what you are looking for.

+3
source

I would just use a text editor / hilighter like Notepad ++ : P

+2
source

All Articles