diff options
author | Rob Mensching <rob@firegiant.com> | 2017-11-29 22:03:26 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-11-29 22:03:26 -0800 |
commit | 71c52d5af2293d3eb79882ce36b0411f81185c11 (patch) | |
tree | 23dd116bdd6abc2b0f7b488f490d1b77faa41812 /src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs | |
parent | 0fa198ed8c6c6fc81e649466879752a99fe37d08 (diff) | |
download | wix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.gz wix-71c52d5af2293d3eb79882ce36b0411f81185c11.tar.bz2 wix-71c52d5af2293d3eb79882ce36b0411f81185c11.zip |
Fix source path and cabinet processing
Diffstat (limited to 'src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs')
-rw-r--r-- | src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs b/src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs index 7e5a07c5..056be1e9 100644 --- a/src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs +++ b/src/WixToolset.Data.WindowsInstaller/ColumnDefinition.cs | |||
@@ -975,7 +975,8 @@ namespace WixToolset.Data | |||
975 | { | 975 | { |
976 | if (!(value is string)) | 976 | if (!(value is string)) |
977 | { | 977 | { |
978 | throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, "Cannot set string column '{0}' with a value of type '{1}'.", this.name, value.GetType().ToString())); | 978 | //throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, "Cannot set string column '{0}' with a value of type '{1}'.", this.name, value.GetType().ToString())); |
979 | return value.ToString(); | ||
979 | } | 980 | } |
980 | } | 981 | } |
981 | } | 982 | } |