revert confcons version back to 2.6 when serializing

This commit is contained in:
David Sparer
2017-10-17 13:55:03 -05:00
parent 81f06026d0
commit 2994419381

View File

@@ -16,7 +16,7 @@ namespace mRemoteNG.Config.Serializers
element.Add(new XAttribute(XName.Get("KdfIterations"), cryptographyProvider.KeyDerivationIterations));
element.Add(new XAttribute(XName.Get("FullFileEncryption"), fullFileEncryption.ToString()));
element.Add(CreateProtectedAttribute(rootNodeInfo, cryptographyProvider));
element.Add(new XAttribute(XName.Get("ConfVersion"), "2.8"));
element.Add(new XAttribute(XName.Get("ConfVersion"), "2.6"));
return element;
}