aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-22 23:09:30 -0700
committerRob Mensching <rob@firegiant.com>2020-06-23 02:10:31 -0700
commitf18b96045088d6d989e70df19343a99092685e5e (patch)
tree61e2ba55fe4c0c66fcb811412b89cfbb2f532398 /src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
parent06e86dadb969ad1d337db11956814a1f79bbcd02 (diff)
downloadwix-f18b96045088d6d989e70df19343a99092685e5e.tar.gz
wix-f18b96045088d6d989e70df19343a99092685e5e.tar.bz2
wix-f18b96045088d6d989e70df19343a99092685e5e.zip
Move CustomAction script inner text to ScriptFile attribute
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
index da92be69..ea6d49a0 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
@@ -347,9 +347,9 @@ namespace WixToolset.Core.WindowsInstaller.Bind
347 command.Execute(); 347 command.Execute();
348 } 348 }
349 349
350 // Update control text from files on disk. 350 // Update tuples that reference text files on disk.
351 { 351 {
352 var command = new UpdateControlTextCommand(this.Messaging, section); 352 var command = new UpdateFromTextFilesCommand(this.Messaging, section);
353 command.Execute(); 353 command.Execute();
354 } 354 }
355 355