We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6517f91 commit 7c13d54Copy full SHA for 7c13d54
2 files changed
build/mtp.runsettings
@@ -0,0 +1,7 @@
1
+<RunSettings>
2
+ <MSTest>
3
+ <Extensions>
4
+ <Extension Type="Microsoft.Testing.Extensions.CodeCoverage.CodeCoverageExtension" />
5
+ </Extensions>
6
+ </MSTest>
7
+</RunSettings>
build/steps-ci.yml
@@ -10,7 +10,11 @@ steps:
10
packageType: sdk
11
version: 10.0.x # https://github.com/dotnet/core/blob/main/release-notes/releases-index.json
12
13
-- script: dotnet test --configuration ${{ parameters.configuration }} --report-xunit-trx
+- script: >
14
+ dotnet test
15
+ --configuration ${{ parameters.configuration }}
16
+ --report-xunit-trx
17
+ --settings $(System.DefaultWorkingDirectory)/build/mtp.runsettings
18
displayName: Build and Test
19
20
- task: PublishTestResults@2
0 commit comments