How can you determine the "type" of a project in visual studio..

eg if a project is a class library, a web application project, a winforms project a wcf project etc etc...the icons are obviously different for alot of them but is there anwhere where it states the project type?

link|improve this question

73% accept rate
1  
see this mztools.com/articles/2008/MZ2008017.aspx – zproxy May 8 '10 at 12:26
feedback

2 Answers

Programmatically, using the EnvDTE namespace, you can investigate the Project.Kind property of the Visual Studio project.

However, if you're interested in a more detailed, the project specification file, i.e. the *.csproj, *.vbproj, among others describes the kind of the project in an XML way.

link|improve this answer
In which element within *.csproj , there is some info about project type? I could not find it in visual studio 2010 – odiseh Jan 1 at 8:31
feedback

Have you looked in the project file?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.