diff options
| author | Bob Arnson <bob@firegiant.com> | 2021-02-23 19:03:35 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2021-02-23 19:15:10 -0500 |
| commit | 85e8091e50d85f19515be70e85aff70e86b1906c (patch) | |
| tree | d8bb2812cdcec16c12a7c63933c16d6eb088b313 /src | |
| parent | 466c8aec96987f9c43b577204c12b5157527a405 (diff) | |
| download | wix-85e8091e50d85f19515be70e85aff70e86b1906c.tar.gz wix-85e8091e50d85f19515be70e85aff70e86b1906c.tar.bz2 wix-85e8091e50d85f19515be70e85aff70e86b1906c.zip | |
Add custom action prefixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wixext/SqlCompiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/SqlCompiler.cs b/src/wixext/SqlCompiler.cs index 4618eaba..46196e95 100644 --- a/src/wixext/SqlCompiler.cs +++ b/src/wixext/SqlCompiler.cs | |||
| @@ -797,8 +797,8 @@ namespace WixToolset.Sql | |||
| 797 | 797 | ||
| 798 | private void AddReferenceToInstallSqlData(IntermediateSection section, SourceLineNumber sourceLineNumbers) | 798 | private void AddReferenceToInstallSqlData(IntermediateSection section, SourceLineNumber sourceLineNumbers) |
| 799 | { | 799 | { |
| 800 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "InstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); | 800 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4InstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); |
| 801 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "UninstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); | 801 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4UninstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); |
| 802 | } | 802 | } |
| 803 | } | 803 | } |
| 804 | } | 804 | } |
