From a8fc7ce5540891e7b5d30f2e4f0adcda12762ad3 Mon Sep 17 00:00:00 2001 From: Narcis Dumitrescu Date: Sun, 26 Mar 2023 01:50:31 +0200 Subject: Fix for wrong column index values in WixToolset.Dtf.WindowsInstaller.Linq.Entities.RemoveFile_ --- src/dtf/WixToolset.Dtf.WindowsInstaller.Linq/Entities.cs | 10 +++++----- 1 file 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 public string Value { get { return this[4]; } set { this[4] = value; } } public string Component_ { get { return this[5]; } set { this[5] = value; } } public RegistryRoot Root - { get { return (RegistryRoot) this.I(1); } set { this[0] = ((int) value).ToString(); } } + { get { return (RegistryRoot) this.I(1); } set { this[1] = ((int) value).ToString(); } } } public class RemoveFile_ : QRecord { public string FileKey { get { return this[0]; } set { this[0] = value; } } - public string Component_ { get { return this[2]; } set { this[2] = value; } } - public string FileName { get { return this[3]; } set { this[3] = value; } } - public string DirProperty { get { return this[4]; } set { this[4] = value; } } + public string Component_ { get { return this[1]; } set { this[1] = value; } } + public string FileName { get { return this[2]; } set { this[2] = value; } } + public string DirProperty { get { return this[3]; } set { this[3] = value; } } public RemoveFileModes InstallMode - { get { return (RemoveFileModes) this.I(5); } set { this[5] = ((int) value).ToString(); } } + { get { return (RemoveFileModes) this.I(4); } set { this[4] = ((int) value).ToString(); } } } #endregion // Generated code -- cgit v1.2.3-55-g6feb