From 57be08e0e4202cfc78b94d6312b4cfb76093ef1f Mon Sep 17 00:00:00 2001 From: Ole Albers Date: Mon, 2 May 2016 22:59:28 +0200 Subject: [PATCH] Changing "or-not" to "or" on Version Condition File should usually be replaced if it is lower the target version --- FeedBuilder/frmMain.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FeedBuilder/frmMain.cs b/FeedBuilder/frmMain.cs index 5a8e2877..bd1f9dc2 100644 --- a/FeedBuilder/frmMain.cs +++ b/FeedBuilder/frmMain.cs @@ -295,7 +295,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);