Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name and ParametersDescriptionReturn TypeUsage Examples
And(boolean value)Returns logical AND of current boolean value with specified valueboolean$Build.IsFeatureBranchBuild.And(%Deploy%)$False
Or(boolean value)Returns logical OR of current boolean value with specified valueboolean$Build.IsFeatureBranchBuild.Or(%Deploy%)$True
Not()Negates current boolean valueboolean

$Build.IsFeatureBranchBuild.Not()$

$Build.IsFeatureBranchBuild.And(%Deploy%).Not()$

$Build.IsFeatureBranchBuild.Not().And(%Deploy%)$

True

True

True

ToString()Parses current boolean to a string, allowing string operations and functionsstring$Build.IsFeatureBranchBuild.ToString().ToLower()$"false"