Announcements
# azure-pipeline.yaml trigger: none parameters: - name: Solutions type: number default: 2 values: - 1 - 2 - 4 - 8 - 16 - 32 jobs: - job: EvaluateSolutions displayName: 'Evaluate Selected Solutions' steps: - ${{ if eq(parameters.Solutions & 1, 1) }}: - script: echo "Solution 1" displayName: 'Export Solution 1' - ${{ if eq(parameters.Solutions & 2, 2) }}: - script: echo "Solution 2" displayName: 'Export Solution 2' - ${{ if eq(parameters.Solutions & 4, 4) }}: - script: echo "Solution 4" displayName: 'Export Solution 4' - ${{ if eq(parameters.Solutions & 8, 8) }}: - script: echo "Solution 8" displayName: 'Export Solution 8' - ${{ if eq(parameters.Solutions & 16, 16) }}: - script: echo "Solution 16" displayName: 'Export Solution 16' - ${{ if eq(parameters.Solutions & 32, 32) }}: - script: echo "Solution 32" displayName: 'Export Solution 32'
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Vish WR 914
11manish 612
Valantis 604