Re: [WiX-users] WIX custom action

2014-07-09 Thread Tobias S
http://buildmaestro.wordpress.com/2011/08/30/c-dtf-using-locale-net-culture-folder-and-resources-files-for-translations-with-makesfxca-exe/ -- Open source business process management suite built on Java and Eclipse Turn

Re: [WiX-users] WIX custom action

2014-07-05 Thread Phil Wilson
I don't know why that specific thing doesn't work, but if you are in the UI dialogs, then there are no .resx files installed, or resource Dlls either. From the MSI point of view, the big picture is that MSI files do one language at a time, typically applied at install time by specifying a

Re: [WiX-users] WIX custom action

2014-07-05 Thread Phill Hogland
I have not done this with a C# dll CA, but I had a similar problem localizing my mba C# dll. The C# dll gets loaded into a host. In the mba case the host had already defined a resource dictionary using the default name. So in my project (which is not in front of me now) I had to define resx

[WiX-users] WIX custom action

2014-07-04 Thread Vaghela, Rajesh
Hi Friends, I have created one custom dialog on its next it validates whether the selected folder is system folder or not. To achieve the above requirement I have created custom action using c#, to this custom action selected path is being send. In case the selected path is system folder then

[WiX-users] Wix Custom Action - SchedXMLFile

2010-04-22 Thread CC H
Hi, I have an xml file (e.g.: Sampleconfig.xml) that contains a number of key-value configuration data such as connection string. During installation time, there is a custom action that takes these data from the sample config file, and populate them as MSI properties. E.g.: the custom

Re: [WiX-users] WiX custom action error on windows vista or XP

2010-02-24 Thread Blair
Installer XML toolset. Subject: Re: [WiX-users] WiX custom action error on windows vista or XP They require .Net Framework 2.0, Im testing for the framework with the following condition PropertyRef Id=NETFRAMEWORK35/ Condition Message=The .NET Framework 3.5 must be installed ([NETFRAMEWORK35

[WiX-users] WiX custom action error on windows vista or XP

2010-02-23 Thread Alex Wernecke
Hi, Im having a problem. My WiX MSI's seem to only work correctly on windows 7? In my WiX installation custom c# project actions are called and performed but it only seems to work on windows 7 machines. I have a condition check to check that the machine has .Net Framework 3.5 but at the

Re: [WiX-users] WiX custom action error on windows vista or XP

2010-02-23 Thread Blair
] Sent: Tuesday, February 23, 2010 6:31 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] WiX custom action error on windows vista or XP Hi, Im having a problem. My WiX MSI's seem to only work correctly on windows 7? In my WiX installation custom c# project actions are called

Re: [WiX-users] WiX custom action error on windows vista or XP

2010-02-23 Thread Alex Wernecke
23, 2010 6:25 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] WiX custom action error on windows vista or XP What version of the framework do your custom actions require, and what version of the framework are you testing for? Also, how/where do you test

Re: [WiX-users] WIX - Custom Action calling EXE (with a dependent DLL)

2007-04-21 Thread Bob Arnson
Sankaranarayanan wrote: In my installer - I have a custom action which calls an EXE to perform some operation. At the end of the installation, I want to make sure that the EXE used in the Custom Action is deleted from the system. I don't want to ship the EXE to clients. Remember that

[WiX-users] WIX - Custom Action calling EXE (with a dependent DLL)

2007-04-20 Thread Sankaranarayanan
Hi, In my installer - I have a custom action which calls an EXE to perform some operation. At the end of the installation, I want to make sure that the EXE used in the Custom Action is deleted from the system. I don't want to ship the EXE to clients. I find that we can do it in the following