-
From what I can tell grepping through the WiX 3.0 source, the CommitCAScriptCleanup custom action function in src/ca/wixca/dll/cacleanup.cpp is not referenced in any XML anywhere. In the WiX 2 tree, it is referenced in src/ca/wixca/setup/wixca.wxs.
It seems to me that that fragment should be added to src/ext/UtilExtension/wixlib/UtilExtension.wxs in 3.0 and 3.5. Also the CustomActionRef in...
2009-10-02 06:58:53 UTC in Windows Installer XML (WiX) toolset
-
In order to build a WiX compiler extension, I needed to check out the source from CVS (since the source package is missing files needed to build), convince it to build at least a little (which was quite an ordeal for me, being my first attempt to deal with building .NET stuff), and extract the following files:
WixBuild.dll
XsdGen.exe
FlattenXml.exe
I also needed to extract chunks of...
2009-10-01 06:13:53 UTC in Windows Installer XML (WiX) toolset
-
The registry values HKEY_CLASSES_ROOT\AppID\{GUID}\DllSurrogate should be set to an empty string to use the system surrogate. According to the MSDN docs for the AppId table (http://msdn.microsoft.com/en-us/library/aa367566(VS.85).aspx), "If this column is present it will typically be an empty string". But, light gives an error if the DllSurrogate attribute is an empty string. I am working...
2009-10-01 05:56:43 UTC in Windows Installer XML (WiX) toolset
-
w32api is missing winhttp.h, and the import library for winhttp.dll. This library exists on Windows 2000 SP3, XP SP1 and above.
The MSDN documentation for WinHTTP is available at http://msdn.microsoft.com/en-us/library/aa384252(VS.85).aspx
I have w32api version 3.13, but I have verified the lack of the header and def file in the cvs linked from cygwin.com.
2009-08-01 00:19:34 UTC in MinGW - Minimalist GNU for Windows