You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My particular case is for the condition values, but I'm sure there are other cases where this makes sens
I have this condition in a task in a pipeline I'm working on:
or
(
eq('${{parameters.Environment}}', 'dev'),
eq('${{parameters.Environment}}', 'qa'),
eq('${{parameters.Environment}}', 'staging'),
and
(
eq('${{parameters.Environment}}', 'production'),
eq('${{parameters.BundleAndroid}}', false)
)
)
I could write that in a more compact fashion... but without some kind of syntax highlight it becomes very hard to read, and parenthesis matching (if I put the cursor on one parenthesis, it shows me where the matching one is) would help a lot when going through these kinds of condition strings.
Additionally, (tho not really in the scope of this issue) it'd be nice to have some syntax highlight for the ${{ }} expressions, and some intellisense on the expression functions
The text was updated successfully, but these errors were encountered:
My particular case is for the
condition
values, but I'm sure there are other cases where this makes sensI have this
condition
in a task in a pipeline I'm working on:I could write that in a more compact fashion... but without some kind of syntax highlight it becomes very hard to read, and parenthesis matching (if I put the cursor on one parenthesis, it shows me where the matching one is) would help a lot when going through these kinds of
condition
strings.Additionally, (tho not really in the scope of this issue) it'd be nice to have some syntax highlight for the
${{ }}
expressions, and some intellisense on the expression functionsThe text was updated successfully, but these errors were encountered: