We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that $[...] notation is not working inside Task Condition Block e.g.:
<conditions> <compareCondition> <value1>$[isReady]</value1> <value2>False</value2> <evaluation>notEqual</evaluation> <ignoreCase>true</ignoreCase> </compareCondition> </conditions> ... <selectParameter> <name>isReady</name> <allowedValues> <value name="True">True</value> <value name="False">False</value> </allowedValues> </selectParameter>
The only way that works for me is indirect through replacement:
<dynamicValues> <directValue> <parameter>isReady</parameter> <property>conditions.compareCondition.value1</property> </directValue> </dynamicValues>
While the second approach is sufficient workaround for parameters, you can't do it for integration properties e.g. CCNetLabel.
Shall condition block implement IDynamicValue interface?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that $[...] notation is not working inside Task Condition Block e.g.:
The only way that works for me is indirect through replacement:
While the second approach is sufficient workaround for parameters, you can't do it for integration properties e.g. CCNetLabel.
Shall condition block implement IDynamicValue interface?
The text was updated successfully, but these errors were encountered: