aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-02-23 19:03:35 -0500
committerBob Arnson <bob@firegiant.com>2021-02-23 19:15:10 -0500
commit85e8091e50d85f19515be70e85aff70e86b1906c (patch)
treed8bb2812cdcec16c12a7c63933c16d6eb088b313
parent466c8aec96987f9c43b577204c12b5157527a405 (diff)
downloadwix-85e8091e50d85f19515be70e85aff70e86b1906c.tar.gz
wix-85e8091e50d85f19515be70e85aff70e86b1906c.tar.bz2
wix-85e8091e50d85f19515be70e85aff70e86b1906c.zip
Add custom action prefixes.
-rw-r--r--global.json2
-rw-r--r--src/wixext/SqlCompiler.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/global.json b/global.json
index 10345833..32e88652 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
1{ 1{
2 "msbuild-sdks": { 2 "msbuild-sdks": {
3 "WixToolset.Sdk": "4.0.0-build-0163" 3 "WixToolset.Sdk": "4.0.0-build-0190"
4 } 4 }
5} 5}
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}