.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
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.
 
 
 
 

14 lines
390 B

// Guids.cs
// MUST match guids.h
using System;
namespace ICSharpCode.ILSpy.AddIn
{
static class GuidList
{
public const string guidILSpyAddInPkgString = "a9120dbe-164a-4891-842f-fb7829273838";
public const string guidILSpyAddInCmdSetString = "85ddb8ca-a842-4b1c-ba1a-94141fdf19d0";
public static readonly Guid guidILSpyAddInCmdSet = new Guid(guidILSpyAddInCmdSetString);
};
}