I am currently writing a WIX installer that has several dependencies on other installed products. It is in C # and requires the following dependencies
- Office 2010 (including Excel / Word)
- .NET Framework 3.5
Now for the .NET Framework, I can use WixNetFxExtension on wix to say
<PropertyRef Id="NETFRAMEWORK35_SP_LEVEL"/>
and then refers to this property in the Condition.
Is there a similar extension for this for different versions of Office or their individual files, such as Word, etc.
I know that I can use custom actions for this, but I want it to just be done, and not create my own custom actions?
source
share