Re: [WiX-users] Command line arguments to managed BA

2012-06-28 Thread Bob Arnson
On 28-Jun-12 09:10, Brian C wrote: > More information... > > If I pass "/?" on XP or Win7, I get "ignored" as the command line argument. > If I pass obvious variables (i.e. INSTALLDIR=), then those arguments > are passed through along with the "ignored" string. The Command.CommandLine = > "i

Re: [WiX-users] Command line arguments to managed BA

2012-06-28 Thread Bruce Cran
On 28/06/2012 14:10, Brian C wrote: > More information... > > If I pass "/?" on XP or Win7, I get "ignored" as the command line argument. > If I pass obvious variables (i.e. INSTALLDIR=), then those arguments > are passed through along with the "ignored" string. The Command.CommandLine = > "

Re: [WiX-users] Command line arguments to managed BA

2012-06-28 Thread Brian C
hing ; General discussion for Windows Installer XML toolset. Sent: Wednesday, June 27, 2012 4:37 PM Subject: Re: [WiX-users] Command line arguments to managed BA Rob,   I have gotten a little further now.  Using Model.Command.CommandLine, I now get my command line arguments great, except that on

Re: [WiX-users] Command line arguments to managed BA

2012-06-27 Thread Brian C
rsday, June 21, 2012 11:16 PM Subject: Re: [WiX-users] Command line arguments to managed BA The Command structure has the command-line. On Thu, Jun 21, 2012 at 1:06 PM, Brian C wrote: Hello, >    I have a managed bootstrap application, C# XAML mimicking the >WixBA example, bu

Re: [WiX-users] Command line arguments to managed BA

2012-06-21 Thread Rob Mensching
The Command structure has the command-line. On Thu, Jun 21, 2012 at 1:06 PM, Brian C wrote: > Hello, > I have a managed bootstrap application, C# XAML mimicking > the WixBA example, but I would like to drive it with command line > arguments. I have tried adding a void Main(strin

[WiX-users] Command line arguments to managed BA

2012-06-21 Thread Brian C
Hello,     I have a managed bootstrap application, C# XAML mimicking the WixBA example, but I would like to drive it with command line arguments.  I have tried adding a void Main(string[] args) to the BA class, but that does not get hit.  I tried overloading the Run() the same way, b