fixed parent reference update issue in mRemoteNGImporter

This commit is contained in:
David Sparer
2017-03-24 11:40:28 -06:00
parent 3943b8753f
commit d49d58f7f8
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
1.75.7003 (2017-03-24):
Fixes:
------
#464: Resolved issue when importing a connections file while using SQL server feature
1.75.7002 (2017-03-10):
Fixes:

View File

@@ -35,7 +35,7 @@ namespace mRemoteNG.Config.Import
var connectionTreeModel = xmlConnectionsDeserializer.Deserialize(true);
var rootImportContainer = new ContainerInfo { Name = Path.GetFileNameWithoutExtension(fileName) };
rootImportContainer.Children.AddRange(connectionTreeModel.RootNodes.First().Children);
rootImportContainer.AddChildRange(connectionTreeModel.RootNodes.First().Children.ToArray());
destinationContainer.AddChild(rootImportContainer);
}
}

View File

@@ -33,7 +33,7 @@ using System.Runtime.InteropServices;
// by using the '*' as shown below:
// <Assembly: AssemblyVersion("1.0.*")>
[assembly: AssemblyVersion("1.75.7002.*")]
[assembly: AssemblyVersion("1.75.7003.*")]
[assembly:NeutralResourcesLanguageAttribute("en")]