I have managed to create a custom action in C# using MakeSfxCA
which is mostly working.
However, there is some kinks which needs debugging to sort out. (The "printf-debugging" just is not enough.)
However all debug info is lost.
When MakeSfxCA is called from the Visual Studio project the .pdb-file is not passed as an argument, so no debug-info is included in the created CA-dll.
If I manually run MakeSfxCA
MakeSfxCA MyDLL.CA.dll SfxCa.dll MyDLL.dll MyDLL.pdb CustomAction.config
then the debug-info is included in the created custom-action-dll.
How do I get the WiX-CA-project to add the pdb-info automatically?
/Leif