-
We have a WiX installer which was developed using WiX 3, now we are upgrading it to use WiX 4. -ext "C:\Repo\XYZ.Compiler.dll" We took https://github.com/wixtoolset/wix/tree/develop/src/ext as a reference and modified our custom compiler extension. When we build our project, we are seeing the below error. Can anyone please help us in finding the root cause. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
It sounds like you're resuing your XML namespace across extensions. |
Beta Was this translation helpful? Give feedback.
-
WixToolset.BuildTasks.WixBuild adds the Additional Options(line 85). There is also a call to the base method which also adds the Additional Options(line 92). This explains the issue I am facing. @robmen Is this an issue ? |
Beta Was this translation helpful? Give feedback.
WixToolset.BuildTasks.WixBuild adds the Additional Options(line 85). There is also a call to the base method which also adds the Additional Options(line 92). This explains the issue I am facing.
@robmen Is this an issue ?