aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-07 14:50:34 -0700
committerRob Mensching <rob@firegiant.com>2019-10-07 21:44:46 -0700
commit4a32d8c4dd2073182cebcc3f1423fa618bd7e13d (patch)
tree757535dc5296b293d56adb89a0bee26c8d8ff809 /src/WixToolset.Core
parent32ac87b2bf1a3a5bddb0630b65e52d117e5e2323 (diff)
downloadwix-4a32d8c4dd2073182cebcc3f1423fa618bd7e13d.tar.gz
wix-4a32d8c4dd2073182cebcc3f1423fa618bd7e13d.tar.bz2
wix-4a32d8c4dd2073182cebcc3f1423fa618bd7e13d.zip
Fix Upgrade IncludeMinimum attribute
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r--src/WixToolset.Core/Compiler_2.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler_2.cs b/src/WixToolset.Core/Compiler_2.cs
index 3ad8acf9..445e8dfa 100644
--- a/src/WixToolset.Core/Compiler_2.cs
+++ b/src/WixToolset.Core/Compiler_2.cs
@@ -4849,7 +4849,7 @@ namespace WixToolset.Core
4849 includeMax = YesNoType.Yes == this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib); 4849 includeMax = YesNoType.Yes == this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib);
4850 break; 4850 break;
4851 case "IncludeMinimum": // this is "yes" by default 4851 case "IncludeMinimum": // this is "yes" by default
4852 includeMin = YesNoType.No == this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib); 4852 includeMin = YesNoType.Yes == this.Core.GetAttributeYesNoValue(sourceLineNumbers, attrib);
4853 break; 4853 break;
4854 case "Language": 4854 case "Language":
4855 language = this.Core.GetAttributeValue(sourceLineNumbers, attrib); 4855 language = this.Core.GetAttributeValue(sourceLineNumbers, attrib);