Re: [WiX-users] C#, two custom actions from one DLL

2009-09-21 Thread skaa
Thank you! It works! - ! -- View this message in context: http://n2.nabble.com/C-two-custom-actions-from-one-DLL-tp3663658p3685278.html Sent from the wix-users mailing list archive at Nabble.com. -- Come build with

Re: [WiX-users] C#, two custom actions from one DLL

2009-09-17 Thread Oscar Newkerk
I'm guessing that you need to modify the second entrypoint in the custom action code to add the [CustomAction] attribute to the method. So: public class CustomActions { [CustomAction] public static ActionResult CustomActionA(Session session) { session.

Re: [WiX-users] C#, two custom actions from one DLL

2009-09-17 Thread Brant Gurganus
Do you need the CustomAction attribute on the other entry point? Brant Gurganus http://gurganus.name/brant On Thu, Sep 17, 2009 at 11:00 AM, skaa wrote: > > This is the piece of WXS file: > >     SourceFile="$(var.CustomAction.TargetDir)CustomAction.CA.dll"/> > >          Id="CustomActionA" Ret