Skip to content
This repository was archived by the owner on Dec 18, 2023. It is now read-only.

Commit e339c7b

Browse files
author
Sergey Kanzhelev
committed
update yml for correct test path
1 parent e991f92 commit e339c7b

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.vsts/ci-build-windows.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,34 @@ queue:
22
name: Hosted VS2017
33
steps:
44
- task: DotNetCoreInstaller@0
5+
displayName: force use of desired dotnet version
56
inputs:
67
version: "2.0.3"
78

89
- task: DotNetCoreCLI@1
10+
displayName: restore packages
911
inputs:
1012
command: "restore"
1113
projects: "*.sln"
1214

1315
- task: DotNetCoreCLI@1
16+
displayName: build
1417
inputs:
1518
command: "build"
1619
projects: "*.sln"
1720
arguments: "--configuration Release"
1821

1922
- task: DotNetCoreCLI@1
23+
displayName: test
2024
inputs:
2125
command: "test"
22-
projects: "Test/**/*netcoreapp20*.csproj"
23-
arguments: "--configuration Release --filter TestCategory!=WindowsOnly"
26+
projects: "test/**/*.csproj"
27+
arguments: "--configuration Release"
2428

2529
- task: PublishTestResults@2
2630

2731
- task: DotNetCoreCLI@1
32+
displayName: publish
2833
inputs:
2934
command: "publish"
3035
publishWebProjects: "True"

0 commit comments

Comments
 (0)