Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@4011 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
6 changed files with 67 additions and 5 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <author name="Daniel Grunwald"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
|
||||
namespace ICSharpCode.SharpDevelop.Project |
||||
{ |
||||
/// <summary>
|
||||
/// Contains constants for the project type GUIDs.
|
||||
///
|
||||
/// Source: http://www.mztools.com/Articles/2008/MZ2008017.aspx
|
||||
/// </summary>
|
||||
public static class ProjectTypeGuids |
||||
{ |
||||
public const string CSharp = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"; |
||||
public const string VBNet = "{F184B08F-C81C-45F6-A57F-5ABD9991F28F}"; |
||||
public const string CPlusPlus = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}"; |
||||
|
||||
public const string WebApplication = "{349C5851-65DF-11DA-9384-00065B846F21}"; |
||||
public const string WebSite = "{E24C65DC-7377-472B-9ABA-BC803B73C61A}"; |
||||
public const string Silverlight = "{A1591282-1198-4647-A2B1-27E5FF5F6F3B}"; |
||||
} |
||||
} |
Loading…
Reference in new issue