1

Is it possible to use Visual Studio 2010 as a simple web site editor (HTML + JavaScript; no ASP.NET)?

VS only supports known project file types (i.e. .csproj), so I started with a C# project and I've been fiddling with the file, but VS still keeps creating .vshost files and obj directory.

Can I force it not to do this?

Filburt
  • 17,626
  • 12
  • 64
  • 115
Stefan
  • 4,166
  • 3
  • 33
  • 47

3 Answers3

0

You can add "Project Folders" to a empty project / solution and add the files into the folders without any project "overhead" .. intellisense works fine ..

Marcus
  • 323
  • 1
  • 3
  • 6
0

Maybe using Visual Web developer

http://technet.microsoft.com/en-us/query/9z74w20y

Wayne In Yak
  • 546
  • 1
  • 4
  • 21
0

See Previous Question

Visual Studio Web Development is orientated to ASP.NET projects creation, but you can build without any problem, HTML & JS applications deleting the extra directories created for ASP.NET apps, which need that.

Community
  • 1
  • 1
Chris Pont
  • 789
  • 5
  • 14