How do you tell the Visual Studio project type from an existing Visual Studio project - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T06:46:19Zhttp://stackoverflow.com/feeds/question/660790http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro2How do you tell the Visual Studio project type from an existing Visual Studio projectnzpcmad2009-03-19T01:47:31Z2009-03-19T19:28:34Z
<p>Using Visual Studio 2005.</p>
<p>Is there anything in the .sln or .vcproj files (or anywhere else) that defines the project type / subtype? </p>
<p>Edit: What I mean is that when you create a project, you first choose a language (e.g. Visual C#), then a project type (e.g. Windows) and then a subtype (e.g. Console Application).</p>
<p>Where is this information stored within the VS files?</p>
http://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro/660886#6608861Answer by Aaron Saarela for How do you tell the Visual Studio project type from an existing Visual Studio projectAaron Saarela2009-03-19T02:39:08Z2009-03-19T02:39:08Z<p>The .vproj file defines the project type, for example, the following defines a C++ project. </p>
<pre><code><VisualStudioProject
ProjectType="Visual C++"
</code></pre>
<p>The project tag also includes the compiler version.</p>
http://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro/660896#6608961Answer by HardCode for How do you tell the Visual Studio project type from an existing Visual Studio projectHardCode2009-03-19T02:47:49Z2009-03-19T02:47:49Z<p>Double-click on "My Project" in the Solution Explorer, and look at the "Application type:" ComboBox. It tells you (and lets you change) the project type.</p>
http://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro/660938#6609381Answer by rally25rs for How do you tell the Visual Studio project type from an existing Visual Studio projectrally25rs2009-03-19T03:14:16Z2009-03-19T03:14:16Z<p>In the project XML files:</p>
<p>Console applications contain:</p>
<pre><code><OutputType>Exe</OutputType>
</code></pre>
<p>WinForms applications contain:</p>
<pre><code><OutputType>WinExe</OutputType>
</code></pre>
<p>Library (.dll) projects contain:</p>
<pre><code><OutputType>Library</OutputType>
</code></pre>
<p>and do NOT contain a </p>
<pre><code><ProjectTypeGuids>
</code></pre>
<p>ASP.NET and WCF projects contain:</p>
<pre><code><ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
</code></pre>
<p>The GUIDs do something to define exactly what type of project it is. The ones above were taken from an ASP.NET app. They exist in WCF projects too, and flipping around the GUIDs can fool Vis Studio into changing the project type when you open it.</p>
http://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro/663677#6636770Answer by nzpcmad for How do you tell the Visual Studio project type from an existing Visual Studio projectnzpcmad2009-03-19T19:28:34Z2009-03-19T19:28:34Z<p>Some further research and I found this:</p>
<p><a href="http://www.mztools.com/Articles/2008/MZ2008017.aspx" rel="nofollow">INFO: List of known project type Guids</a>.</p>
<p>My .sln file contains:</p>
<p>Visual Studio 2005 <br>
Project("{<strong>FAE04EC0-301F-11D3-BF4B-00C04F79EFBC</strong>}") = "AddNumbers", "AddNumbers.csproj", "{2C81C5BB-E3B0-457E-BC02-73C76634CCD6}"</p>
<p>The link shows:</p>
<p>Project Type Description Project Type Guid <br>
Windows (C#) {<strong>FAE04EC0-301F-11D3-BF4B-00C04F79EFBC</strong>} </p>
<p>So it's Windows C# and the subtype is as per @HardCode's reply. In my case, it's "Console Application". </p>