diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-12 22:58:58 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-12 22:58:58 -0600 |
| commit | 063d53c999a2bc53f55b95b4738b54f32b54d8ac (patch) | |
| tree | 3f483c77dc4f517fa4874ca5399cb07c6114ce39 | |
| parent | ce59a2f065830685e3f3e41c381bb0539b232b3d (diff) | |
| download | wix-063d53c999a2bc53f55b95b4738b54f32b54d8ac.tar.gz wix-063d53c999a2bc53f55b95b4738b54f32b54d8ac.tar.bz2 wix-063d53c999a2bc53f55b95b4738b54f32b54d8ac.zip | |
Remove context from generated DefaultIcon registry row. (#16)
Fixes wixtoolset/issues#2461.
| -rw-r--r-- | src/WixToolset.Core/Compiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 35b780a3..2a38cc61 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
| @@ -1316,7 +1316,7 @@ namespace WixToolset.Core | |||
| 1316 | { | 1316 | { |
| 1317 | icon = String.Concat(icon, ",", iconIndex); | 1317 | icon = String.Concat(icon, ",", iconIndex); |
| 1318 | } | 1318 | } |
| 1319 | this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\", context, "\\DefaultIcon"), String.Empty, icon, componentId); | 1319 | this.Core.CreateRegistryRow(sourceLineNumbers, MsiInterop.MsidbRegistryRootClassesRoot, String.Concat("CLSID\\", classId, "\\DefaultIcon"), String.Empty, icon, componentId); |
| 1320 | } | 1320 | } |
| 1321 | } | 1321 | } |
| 1322 | 1322 | ||
