aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-12-12 22:23:49 -0600
committerSean Hall <r.sean.hall@gmail.com>2018-12-12 22:27:53 -0600
commitce59a2f065830685e3f3e41c381bb0539b232b3d (patch)
tree9896cfb09e4d3cd7fb40072a9061ff966972682e
parent6823fa23d6fe2115135e7318aef6e285b3faaf45 (diff)
downloadwix-ce59a2f065830685e3f3e41c381bb0539b232b3d.tar.gz
wix-ce59a2f065830685e3f3e41c381bb0539b232b3d.tar.bz2
wix-ce59a2f065830685e3f3e41c381bb0539b232b3d.zip
ole.dll should be ole2.dll.
Fixes wixtoolset/issues#2459.
-rw-r--r--src/WixToolset.Core/Compiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index f35533ac..35b780a3 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -1335,13 +1335,13 @@ namespace WixToolset.Core
1335 switch (defaultInprocHandler) // ClassId Default Inproc Handler 1335 switch (defaultInprocHandler) // ClassId Default Inproc Handler
1336 { 1336 {
1337 case "1": 1337 case "1":
1338 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler"), String.Empty, "ole.dll", componentId); 1338 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler"), String.Empty, "ole2.dll", componentId);
1339 break; 1339 break;
1340 case "2": 1340 case "2":
1341 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler32"), String.Empty, "ole32.dll", componentId); 1341 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler32"), String.Empty, "ole32.dll", componentId);
1342 break; 1342 break;
1343 case "3": 1343 case "3":
1344 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler"), String.Empty, "ole.dll", componentId); 1344 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler"), String.Empty, "ole2.dll", componentId);
1345 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler32"), String.Empty, "ole32.dll", componentId); 1345 this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler32"), String.Empty, "ole32.dll", componentId);
1346 break; 1346 break;
1347 default: 1347 default: