[Feature] Max Path 260 (#80)

This commit is contained in:
Markus Hofknecht 2020-08-06 23:27:21 +02:00
parent 3e5486ab66
commit de4fb95df3
3 changed files with 4 additions and 4 deletions

View file

@ -591,7 +591,7 @@ namespace SystemTrayMenu.Business
private static void OpenFolder()
{
Log.ProcessStart("explorer.exe", Config.Path, true);
Log.ProcessStart(Config.Path, null, true);
}
private Menu Create(MenuData menuData, string title = null)

View file

@ -216,7 +216,7 @@ namespace SystemTrayMenu.DataClasses
if (ContainsMenu &&
(e == null || e.Button == MouseButtons.Left))
{
Log.ProcessStart("explorer.exe", TargetFilePath, true);
Log.ProcessStart(TargetFilePath, null, true);
}
}

View file

@ -39,5 +39,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.14.3")]
[assembly: AssemblyFileVersion("1.0.14.3")]
[assembly: AssemblyVersion("1.0.14.4")]
[assembly: AssemblyFileVersion("1.0.14.4")]