We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f65622d + f59f053 commit 85888faCopy full SHA for 85888fa
azure-pipelines.yml
@@ -12,20 +12,20 @@ pool:
12
13
variables:
14
solution: 'src/MonoTorrent.sln'
15
- buildParams: '/p:Configuration=Release'
+ configuration: 'Release'
16
17
steps:
18
- task: DotNetCoreCLI@2
19
displayName: 'Build'
20
inputs:
21
command: build
22
projects: $(solution)
23
- arguments: $(buildParams)
+ arguments: '/p:Configuration=$(configuration)'
24
25
26
displayName: 'Test'
27
28
command: test
29
30
- arguments: '$(buildParams) --no-build --collect "Code coverage"'
+ arguments: '--configuration $(configuration) --no-build --collect "Code coverage"'
31
publishTestResults: true
0 commit comments