Skip to content
This repository has been archived by the owner on Jan 27, 2019. It is now read-only.

Commit

Permalink
Fix failed to save project with probe paths
Browse files Browse the repository at this point in the history
Fix #41
  • Loading branch information
yck1509 committed Jul 5, 2014
1 parent bacf24b commit 21590a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Confuser.Core/Project/ConfuserProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 21590a3

Please sign in to comment.