We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9068e9f commit e47043bCopy full SHA for e47043b
1 file changed
azure-pipelines.yml
@@ -7,9 +7,8 @@ pool:
7
8
jobs:
9
- job: Build and Test
10
- parameters:
11
- solution: StyleCopAnalyzers.sln
12
variables:
+ BuildSolution: StyleCopAnalyzers.sln
13
BuildPlatform: AnyCPU
14
strategy:
15
matrix:
@@ -26,11 +25,11 @@ jobs:
26
25
- task: NuGetCommand@2
27
displayName: 'NuGet restore'
28
inputs:
29
- restoreSolution: '$(Parameters.solution)'
+ restoreSolution: '$(BuildSolution)'
30
31
- task: VSBuild@1
32
displayName: 'Build solution StyleCopAnalyzers.sln'
33
34
- solution: '$(Parameters.solution)'
+ solution: '$(BuildSolution)'
35
platform: '$(BuildPlatform)'
36
configuration: '$(BuildConfiguration)'
0 commit comments