/SpecSharp/Microsoft.VisualStudio.Package.Project/VsCommands.cs

# · C# · 40 lines · 20 code · 2 blank · 18 comment · 0 complexity · 920d6507a2ba04b6d0ad8dd59c1c6969 MD5 · raw file

  1. using System;
  2. namespace Microsoft.VisualStudio.Package {
  3. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus"]/*' />
  4. public class VsMenus {
  5. // menu command guids.
  6. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidStandardCommandSet97"]/*' />
  7. public static Guid guidStandardCommandSet97 = new Guid("5efc7975-14bc-11cf-9b2b-00aa00573819");
  8. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidStandardCommandSet2K"]/*' />
  9. public static Guid guidStandardCommandSet2K = new Guid("1496A755-94DE-11D0-8C3F-00C04FC2AAE2");
  10. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidVsVbaPkg"]/*' />
  11. public static Guid guidVsVbaPkg = new Guid(0xa659f1b3, 0xad34, 0x11d1, 0xab, 0xad, 0x0, 0x80, 0xc7, 0xb8, 0x9c, 0x95);
  12. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidSHLMainMenu"]/*' />
  13. public static Guid guidSHLMainMenu = new Guid(0xd309f791, 0x903f, 0x11d0, 0x9e, 0xfc, 0x00, 0xa0, 0xc9, 0x11, 0x00, 0x4f);
  14. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidVSUISet"]/*' />
  15. public static Guid guidVSUISet = new Guid("60481700-078b-11d1-aaf8-00a0c9055a90");
  16. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidCciSet"]/*' />
  17. public static Guid guidCciSet = new Guid("2805D6BD-47A8-4944-8002-4e29b9ac2269");
  18. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.guidVsUIHierarchyWindowCmds"]/*' />
  19. public static Guid guidVsUIHierarchyWindowCmds = new Guid("60481700-078B-11D1-AAF8-00A0C9055A90");
  20. // Special Menus.
  21. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_CODEWIN"]/*' />
  22. public const int IDM_VS_CTXT_CODEWIN = 0x040D;
  23. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_ITEMNODE"]/*' />
  24. public const int IDM_VS_CTXT_ITEMNODE = 0x0430;
  25. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_PROJNODE"]/*' />
  26. public const int IDM_VS_CTXT_PROJNODE = 0x0402;
  27. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_REFERENCEROOT"]/*' />
  28. public const int IDM_VS_CTXT_REFERENCEROOT = 0x0450;
  29. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_REFERENCE"]/*' />
  30. public const int IDM_VS_CTXT_REFERENCE = 0x0451;
  31. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_FOLDERNODE"]/*' />
  32. public const int IDM_VS_CTXT_FOLDERNODE = 0x0431;
  33. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.IDM_VS_CTXT_NOCOMMANDS"]/*' />
  34. public const int IDM_VS_CTXT_NOCOMMANDS = 0x041A;
  35. /// <include file='doc\VsCommands.uex' path='docs/doc[@for="VsMenus.VSCmdOptQueryParameterList"]/*' />
  36. public const int VSCmdOptQueryParameterList = 1;
  37. }
  38. }