ole.dll should be ole2.dll.
Fixes wixtoolset/issues#2459.
Sean Hall committed
Dec 12, 2018 at 22:23 UTC
ce59a2f065830685e3f3e41c381bb0539b232b3d
1 file changed
+2
-2
src/WixToolset.Core/Compiler.cs
+2
-2
@@ -1335,13 +1335,13 @@ namespace WixToolset.Core
1335
switch (defaultInprocHandler) // ClassId Default Inproc Handler
1336
{
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;
1340
case "2":
1341
this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\InprocHandler32"), String.Empty, "ole32.dll", componentId);
1342
break;
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);
1346
break;
1347
default: