Cosmos/source2/VSIP/Cosmos.VS.Package/Guids.cs
DanStory_cp 3c724726fc Incremental check-in.
Added BuildOptionsPropertyPage(.cs) class and file.
Added ConfiguationBase(.cs) class and file.
Added DebugOptionsPropertyPage(.cs) class and file.
Added DebugOptionsQemu(.cs) class and file.
Added required guids of new property pages to Guids(.cs).
Added TitleDivision(.cs) class and file.
2009-05-23 12:21:32 +00:00

19 lines
No EOL
868 B
C#

using System;
namespace Cosmos.VS.Package {
static class Guids {
public const string guidProjectPkgString = "4cae44ed-88b9-4b7c-822b-b040f18fcee3";
public const string guidProjectCmdSetString = "c119efe0-fb56-44a1-b9f0-31247afb207f";
public const string guidProjectFactoryString = "471EC4BB-E47E-4229-A789-D1F5F83B52D4";
public const string guidPropPageEnvironmentString = "08C09552-8DD6-4b59-B901-51EBD5D564A6";
public const string BuildOptionsPropertyPage = "d33a2d29-c4fd-4e12-a510-4c01a14d63e1";
public const string DebugOptionsPropertyPage = "39801176-289f-405f-9425-2931a2c03912";
public static readonly Guid guidProjectCmdSet =
new Guid(guidProjectCmdSetString);
public static readonly Guid guidProjectFactory =
new Guid(guidProjectFactoryString);
};
}