diff --git a/ILSpy.AddIn/Commands/OpenILSpyCommand.cs b/ILSpy.AddIn/Commands/OpenILSpyCommand.cs index 1d569193a..cf2d65768 100644 --- a/ILSpy.AddIn/Commands/OpenILSpyCommand.cs +++ b/ILSpy.AddIn/Commands/OpenILSpyCommand.cs @@ -50,7 +50,7 @@ namespace ICSharpCode.ILSpy.AddIn.Commands protected string GetILSpyPath() { var basePath = Path.GetDirectoryName(typeof(ILSpyAddInPackage).Assembly.Location); - return Path.Combine(basePath, "ILSpy.exe"); + return Path.Combine(basePath, "ILSpy", "ILSpy.exe"); } protected void OpenAssembliesInILSpy(ILSpyParameters parameters) diff --git a/ILSpy.AddIn/ILSpy.AddIn.csproj b/ILSpy.AddIn/ILSpy.AddIn.csproj index 1cf8c6a09..b4d2288bf 100644 --- a/ILSpy.AddIn/ILSpy.AddIn.csproj +++ b/ILSpy.AddIn/ILSpy.AddIn.csproj @@ -51,10 +51,15 @@ - + + + false + false + + @@ -101,38 +106,19 @@ - - - - - - - - - - - - - - - - - - - - - - - + + true + \ + + - + true - \ + \ILSpy - diff --git a/ILSpy.AddIn/ILSpyInstance.cs b/ILSpy.AddIn/ILSpyInstance.cs index adf922328..b8c04bd14 100644 --- a/ILSpy.AddIn/ILSpyInstance.cs +++ b/ILSpy.AddIn/ILSpyInstance.cs @@ -32,7 +32,7 @@ namespace ICSharpCode.ILSpy.AddIn static string GetILSpyPath() { var basePath = Path.GetDirectoryName(typeof(ILSpyAddInPackage).Assembly.Location); - return Path.Combine(basePath, "ILSpy.exe"); + return Path.Combine(basePath, "ILSpy", "ILSpy.exe"); } public void Start()