Re: [WiX-users] Unable to get bal condition to work in custom bootstrapper

2013-03-29 Thread Rob Mensching
The engine can evaluate a condition. The wixstdba pulls the conditions out of the BootstrapperApplicationData.xml then evaluates each one (by calling into the engine). Check out the code, it's pretty straight forward (of course, I may have written a bunch of it so take my opinion with a grain of sa

Re: [WiX-users] Unable to get bal condition to work in custom bootstrapper

2013-03-29 Thread ptr
Thanks ...But it seems like IBootstrapperEngine,Engine don't have a EvaluateConditions at all. Is there a way to get all conditions from a managed bootstrapper or Would you recommend that I do it all in code by not having any bal conditions but use Engine.EvaluateCondition Thanks Raj On Fri, Ma

Re: [WiX-users] Unable to get bal condition to work in custom bootstrapper

2013-03-29 Thread Rob Mensching
Yes, a custom BA would need to evaluate the conditions. wixstdba has a function called EvaluateConditions() that does that. On Fri, Mar 29, 2013 at 7:35 AM, ptr wrote: > hey all > > I am trying to add a condition to my bundle and it doesn't seem to work > > I have something like this in my bund

[WiX-users] Unable to get bal condition to work in custom bootstrapper

2013-03-29 Thread ptr
hey all I am trying to add a condition to my bundle and it doesn't seem to work I have something like this in my bundle 1 >= 2 The bundle references WixBalExtension and I have added xmlns:bal=" http://schemas.microsoft.com/wix/BalExtension to the root Wix xml node. The inst