Skip to content

Commit

Permalink
Merge pull request #83 from OleAlbers/patch-2
Browse files Browse the repository at this point in the history
Changing "or-not" to "or" on Version Condition
  • Loading branch information
robinwassen committed May 18, 2016
2 parents 88457ad + 57be08e commit c617fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FeedBuilder/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private void Build()
if (chkVersion.Checked && !string.IsNullOrEmpty(fileInfoEx.FileVersion))
{
cond = doc.CreateElement("FileVersionCondition");
cond.SetAttribute("type", "or-not");
cond.SetAttribute("type", "or");
cond.SetAttribute("what", "below");
cond.SetAttribute("version", fileInfoEx.FileVersion);
conds.AppendChild(cond);
Expand Down

0 comments on commit c617fd3

Please sign in to comment.