Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove AnnoModificationManager4 reference from RDAExplorer #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/RDAExplorer/RDAExplorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,5 @@
<Compile Include="ZLib\ZLib.cs" />
<Compile Include="AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AnnoModificationManager4\AnnoModificationManager4.csproj">
<Project>{579d60f0-65bd-4577-b3d2-a9c80b7d9baa}</Project>
<Name>AnnoModificationManager4</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
5 changes: 3 additions & 2 deletions src/RDAExplorer/RDAFolder.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using AnnoModificationManager4.Misc;

using System;
using System.Collections.Generic;
using System.IO;
Expand Down Expand Up @@ -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);
}
}
}