[WiX-users] WG: Re: Deployment of Custom Actions

2008-06-15 Thread Markus Wagner
Bob Arnson <[EMAIL PROTECTED]> Gesendet: 02.06.08 06:48:26 An: "General discussion for Windows Installer XML toolset." Betreff: Re: [WiX-users] Deployment of Custom Actions Markus Wagner wrote: > I have written my own CompilerExtension which calls a custom action > also written

Re: [WiX-users] How to make the ProgramMenuDir configurable?

2008-06-13 Thread Markus Wagner
Hi Volker, If you use a custom action to set a directory with a property value you have to ensure that you save the property value somewhere. Otherwise you have a problem during uninstall if the property has an other value than during install. Unfortunatly you notice this not until the uninstall

[WiX-users] Deployment of Custom Actions

2008-06-01 Thread Markus Wagner
I have written my own CompilerExtension which calls a custom action also written by me. Now I have written a setup project to deploy my extension. It installs my extension dll and my custom action dll in a given directory and my xsd in the Visual Studio schema cache. If I try to use my just in

[WiX-users] CustomActions in disabled features

2007-03-19 Thread Markus Wagner
I have 2 merge modules. Dependent of a property I want to include the one or the other merge module. By the moment I have this solved via separate features combined with a condition: NOT Property="Value" ... In the merge module I have custom actions included. Theses cu