diff --git a/Confuser.Core/Project/ConfuserProject.cs b/Confuser.Core/Project/ConfuserProject.cs index beb68f5fd..5ebb4075f 100644 --- a/Confuser.Core/Project/ConfuserProject.cs +++ b/Confuser.Core/Project/ConfuserProject.cs @@ -435,14 +435,14 @@ public XmlDocument Save() { elem.AppendChild(i.Save(xmlDoc)); foreach (string i in ProbePaths) { - XmlElement path = xmlDoc.CreateElement("probePath"); - path.Value = i; + XmlElement path = xmlDoc.CreateElement("probePath", ConfuserProject.Namespace); + path.InnerText = i; elem.AppendChild(path); } foreach (string i in PluginPaths) { - XmlElement path = xmlDoc.CreateElement("plugin"); - path.Value = i; + XmlElement path = xmlDoc.CreateElement("plugin", ConfuserProject.Namespace); + path.InnerText = i; elem.AppendChild(path); }