diff --git a/src/RDAExplorer/RDAExplorer.csproj b/src/RDAExplorer/RDAExplorer.csproj index 15b82ab..4b6a623 100644 --- a/src/RDAExplorer/RDAExplorer.csproj +++ b/src/RDAExplorer/RDAExplorer.csproj @@ -56,11 +56,5 @@ - - - {579d60f0-65bd-4577-b3d2-a9c80b7d9baa} - AnnoModificationManager4 - - \ No newline at end of file diff --git a/src/RDAExplorer/RDAFolder.cs b/src/RDAExplorer/RDAFolder.cs index 0780af2..54831b4 100644 --- a/src/RDAExplorer/RDAFolder.cs +++ b/src/RDAExplorer/RDAFolder.cs @@ -1,4 +1,4 @@ -using AnnoModificationManager4.Misc; + using System; using System.Collections.Generic; using System.IO; @@ -114,7 +114,8 @@ private static RDAFolder NavigateTo(RDAFolder root, string FullPath, string Curr if (list.Count == 1) return root1; list.RemoveAt(0); - return NavigateTo(root1, StringExtension.PutTogether(list, '/'), CurrentPos + "/" + str); + + return NavigateTo(root1, string.Join("/", list), CurrentPos + "/" + str); } } }