How do you tell the Visual Studio project type from an existing Visual Studio project - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T06:46:19Z http://stackoverflow.com/feeds/question/660790 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/660790/how-do-you-tell-the-visual-studio-project-type-from-an-existing-visual-studio-pro 2 How do you tell the Visual Studio project type from an existing Visual Studio project nzpcmad 2009-03-19T01:47:31Z 2009-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#660886 1 Answer by Aaron Saarela for How do you tell the Visual Studio project type from an existing Visual Studio project Aaron Saarela 2009-03-19T02:39:08Z 2009-03-19T02:39:08Z <p>The .vproj file defines the project type, for example, the following defines a C++ project. </p> <pre><code>&lt;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#660896 1 Answer by HardCode for How do you tell the Visual Studio project type from an existing Visual Studio project HardCode 2009-03-19T02:47:49Z 2009-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#660938 1 Answer by rally25rs for How do you tell the Visual Studio project type from an existing Visual Studio project rally25rs 2009-03-19T03:14:16Z 2009-03-19T03:14:16Z <p>In the project XML files:</p> <p>Console applications contain:</p> <pre><code>&lt;OutputType&gt;Exe&lt;/OutputType&gt; </code></pre> <p>WinForms applications contain:</p> <pre><code>&lt;OutputType&gt;WinExe&lt;/OutputType&gt; </code></pre> <p>Library (.dll) projects contain:</p> <pre><code>&lt;OutputType&gt;Library&lt;/OutputType&gt; </code></pre> <p>and do NOT contain a </p> <pre><code>&lt;ProjectTypeGuids&gt; </code></pre> <p>ASP.NET and WCF projects contain:</p> <pre><code>&lt;ProjectTypeGuids&gt;{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}&lt;/ProjectTypeGuids&gt; &lt;OutputType&gt;Library&lt;/OutputType&gt; </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#663677 0 Answer by nzpcmad for How do you tell the Visual Studio project type from an existing Visual Studio project nzpcmad 2009-03-19T19:28:34Z 2009-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>