mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
21 lines
1,000 B
C#
21 lines
1,000 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.VS.ProjectSystem
|
|
{
|
|
static class Guids
|
|
{
|
|
public const string guidCosmosProjectPkgString = "4cae44ed-88b9-4b7c-822b-b040f18fcee3";
|
|
public const string guidCosmosProjectCmdSetString = "c119efe0-fb56-44a1-b9f0-31247afb207f";
|
|
public const string guidCosmosProjectFactoryString = "471EC4BB-E47E-4229-A789-D1F5F83B52D4";
|
|
public const string guidPropPageEnvironmentString = "08C09552-8DD6-4b59-B901-51EBD5D564A6";
|
|
public const string guidCosmosPropertyPageString = "d33a2d29-c4fd-4e12-a510-4c01a14d63e1";
|
|
|
|
public static readonly Guid guidCosmosProjectCmdSet = new Guid(guidCosmosProjectCmdSetString);
|
|
public static readonly Guid guidCosmosProjectFactory = new Guid(guidCosmosProjectFactoryString);
|
|
public static readonly Guid guidCosmosPropertyPage = new Guid(guidCosmosPropertyPageString);
|
|
}
|
|
}
|