Skip to content

Commit 613b9ef

Browse files
committed
fix pipeline to work
1 parent adbfde8 commit 613b9ef

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

azure-pipelines.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,17 @@ steps:
1717
- task: DotNetCoreCLI@2
1818
inputs:
1919
command: test
20-
projects: 'src/**/*.Tests/*.csproj'
20+
projects: '**/*.Tests/*.csproj'
2121
arguments: '--configuration $(buildConfiguration) --logger:trx'
2222

2323
- task: PublishTestResults@2
2424
inputs:
2525
testRunner: VSTest
2626
testResultsFiles: '**/*.trx'
2727

28+
- task: DotNetCoreCLI@2
29+
inputs:
30+
command: pack
31+
projects: '**/*.csproj'
32+
2833
- task: PublishBuildArtifacts@1

0 commit comments

Comments
 (0)