Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
KnownProjectTypeGuid.cs
Go to the documentation of this file.
1 #region License
2 
3 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
4 // This file is distributed under MIT License. See LICENSE.md for details.
5 //
6 // SLNTools
7 // Copyright (c) 2009
8 // by Christian Warren
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
11 // documentation files (the "Software"), to deal in the Software without restriction, including without limitation
12 // the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
13 // to permit persons to whom the Software is furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in all copies or substantial portions
16 // of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19 // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
21 // CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 // DEALINGS IN THE SOFTWARE.
23 
24 #endregion
25 
26 using System;
27 
28 namespace SiliconStudio.Core.VisualStudio
29 {
30  public static class KnownProjectTypeGuid
31  {
32  public readonly static Guid VisualBasic = new Guid("F184B08F-C81C-45F6-A57F-5ABD9991F28F");
33  public readonly static Guid CSharp = new Guid("FAE04EC0-301F-11D3-BF4B-00C04F79EFBC");
34  public readonly static Guid JSharp = new Guid("E6FDF86B-F3D1-11D4-8576-0002A516ECE8");
35  public readonly static Guid FSharp = new Guid("F2A71F9B-5D33-465A-A702-920D77279786");
36  public readonly static Guid SolutionFolder = new Guid("2150E333-8FDC-42A3-9474-1A3956D46DE8");
37  public readonly static Guid VisualC = new Guid("8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942");
38  public readonly static Guid Setup = new Guid("54435603-DBB4-11D2-8724-00A0C9A8B90C");
39  public readonly static Guid WebProject = new Guid("E24C65DC-7377-472B-9ABA-BC803B73C61A");
40  }
41 }