// PkgCmdID.cs
// MUST match PkgCmdID.h

namespace ICSharpCode.ILSpy.AddIn
{
	static class PkgCmdIDList
	{
		public const uint cmdidOpenILSpy = 0x100;
		public const uint cmdidOpenReferenceInILSpy = 0x200;
		public const uint cmdidOpenProjectOutputInILSpy = 0x300;
		public const uint cmdidOpenCodeItemInILSpy = 0x0400;
	};
}