Skip to content

Commit 945bcac

Browse files
Use marco variable syntax
1 parent b72a42c commit 945bcac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ variables:
3636
steps:
3737
- template: build/steps-ci.yml
3838
parameters:
39-
solution: ${{ variables.Solution }}
40-
configuration: ${{ variables.BuildConfiguration }}
39+
solution: $(Solution)
40+
configuration: $(BuildConfiguration)
4141

4242
- ${{ if eq(variables['Build.Reason'], 'Manual') }}:
4343
- template: build/steps-release.yml
4444
parameters:
45-
solution: ${{ variables.Solution }}
46-
configuration: ${{ variables.BuildConfiguration }}
47-
versionSuffix: ${{ variables.VersionSuffix }}
45+
solution: $(Solution)
46+
configuration: $(BuildConfiguration)
47+
versionSuffix: $(VersionSuffix)

0 commit comments

Comments
 (0)