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.
18 lines
502 B
18 lines
502 B
// Guids.cs
|
|
// MUST match guids.h
|
|
using System;
|
|
|
|
namespace ICSharpCode.ILSpy.AddIn
|
|
{
|
|
static class GuidList
|
|
{
|
|
#if VS2022
|
|
public const string guidILSpyAddInPkgString = "ebf12ca7-a1fd-4aee-a894-4a0c5682fc2f";
|
|
#else
|
|
public const string guidILSpyAddInPkgString = "a9120dbe-164a-4891-842f-fb7829273838";
|
|
#endif
|
|
public const string guidILSpyAddInCmdSetString = "85ddb8ca-a842-4b1c-ba1a-94141fdf19d0";
|
|
|
|
public static readonly Guid guidILSpyAddInCmdSet = new Guid(guidILSpyAddInCmdSetString);
|
|
};
|
|
}
|