Skip to content

Commit

Permalink
- Fixed documentation link in Yamster.Native.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
pgonzal committed Apr 12, 2015
1 parent fca01af commit 65ec1ec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/Yamster.Native-Win32/YamsterNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#endregion

using System;
using System.Diagnostics;
using System.IO;
using System.Text.RegularExpressions;
using System.Windows.Forms;
Expand Down Expand Up @@ -66,9 +67,11 @@ public static void RunAndCatchAssemblyLoadExceptions(Action action)
if (errorMessage != null)
{
MessageBox.Show(errorMessage
+ "\r\n\r\nFollow the installation steps in the Yamster-Help.html documentation."
+ "\r\n\r\nFollow the installation steps in the Yamster documentation."
+ " If that doesn't help, please report your issue so we can fix it!",
"Yamster!", MessageBoxButtons.OK, MessageBoxIcon.Stop);

Process.Start("https://yamster.codeplex.com/documentation");
}
}
}
Expand Down

0 comments on commit 65ec1ec

Please sign in to comment.