You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
502 B

  1. // Guids.cs
  2. // MUST match guids.h
  3. using System;
  4. namespace ICSharpCode.ILSpy.AddIn
  5. {
  6. static class GuidList
  7. {
  8. #if VS2022
  9. public const string guidILSpyAddInPkgString = "ebf12ca7-a1fd-4aee-a894-4a0c5682fc2f";
  10. #else
  11. public const string guidILSpyAddInPkgString = "a9120dbe-164a-4891-842f-fb7829273838";
  12. #endif
  13. public const string guidILSpyAddInCmdSetString = "85ddb8ca-a842-4b1c-ba1a-94141fdf19d0";
  14. public static readonly Guid guidILSpyAddInCmdSet = new Guid(guidILSpyAddInCmdSetString);
  15. };
  16. }