|
Is it possible to have a condition in a action that is the result of a Action Output
ex:
<Actions CoordinatorServiceType="Microsoft.Practices.RecipeFramework.Extensions.Coordinators.ConditionalCoordinator, Microsoft.Practices.RecipeFramework.Extensions"> <Action Name="BuildProxy" Type="Extensions.Actions.BuildProxyAction, Extensions"> ........ </Action> <Action Condition="$(BuildProxy.Proxy)" Name="AddCustomAttributes" Type="Extensions.Actions.AddICustomAttributesAction, Extensions"> .......... </Action>
BuildProxy.Proxy is a boolean.
Can I pass a condition that is the result of another action or only boolean arguments can be passed to conditions
Thanks
|