diff options
author | Narcis Dumitrescu <narcis.dumitrescu@selfpay.ro> | 2023-03-26 01:50:31 +0200 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-03-26 01:21:54 -0700 |
commit | a8fc7ce5540891e7b5d30f2e4f0adcda12762ad3 (patch) | |
tree | 2daccfc16920ca8ef85cb1da8e8596f5df9926f9 | |
parent | e602cfa1ce0562eaf6af914189f38556eca80fbf (diff) | |
download | wix-a8fc7ce5540891e7b5d30f2e4f0adcda12762ad3.tar.gz wix-a8fc7ce5540891e7b5d30f2e4f0adcda12762ad3.tar.bz2 wix-a8fc7ce5540891e7b5d30f2e4f0adcda12762ad3.zip |
Fix for wrong column index values in WixToolset.Dtf.WindowsInstaller.Linq.Entities.RemoveFile_
-rw-r--r-- | src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs index 1c51b861..9df5f35e 100644 --- a/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs +++ b/src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs | |||
@@ -131,17 +131,17 @@ namespace WixToolset.Dtf.WindowsInstaller.Linq.Entities | |||
131 | public string Value { get { return this[4]; } set { this[4] = value; } } | 131 | public string Value { get { return this[4]; } set { this[4] = value; } } |
132 | public string Component_ { get { return this[5]; } set { this[5] = value; } } | 132 | public string Component_ { get { return this[5]; } set { this[5] = value; } } |
133 | public RegistryRoot Root | 133 | public RegistryRoot Root |
134 | { get { return (RegistryRoot) this.I(1); } set { this[0] = ((int) value).ToString(); } } | 134 | { get { return (RegistryRoot) this.I(1); } set { this[1] = ((int) value).ToString(); } } |
135 | } | 135 | } |
136 | 136 | ||
137 | public class RemoveFile_ : QRecord | 137 | public class RemoveFile_ : QRecord |
138 | { | 138 | { |
139 | public string FileKey { get { return this[0]; } set { this[0] = value; } } | 139 | public string FileKey { get { return this[0]; } set { this[0] = value; } } |
140 | public string Component_ { get { return this[2]; } set { this[2] = value; } } | 140 | public string Component_ { get { return this[1]; } set { this[1] = value; } } |
141 | public string FileName { get { return this[3]; } set { this[3] = value; } } | 141 | public string FileName { get { return this[2]; } set { this[2] = value; } } |
142 | public string DirProperty { get { return this[4]; } set { this[4] = value; } } | 142 | public string DirProperty { get { return this[3]; } set { this[3] = value; } } |
143 | public RemoveFileModes InstallMode | 143 | public RemoveFileModes InstallMode |
144 | { get { return (RemoveFileModes) this.I(5); } set { this[5] = ((int) value).ToString(); } } | 144 | { get { return (RemoveFileModes) this.I(4); } set { this[4] = ((int) value).ToString(); } } |
145 | } | 145 | } |
146 | 146 | ||
147 | #endregion // Generated code | 147 | #endregion // Generated code |