Skip to content

Commit 2d42566

Browse files
authored
Migrate ADO pipelines (Azure#347)
1 parent 1cfa201 commit 2d42566

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

azure-pipelines.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
trigger:
2+
- main
3+
4+
pool:
5+
name: pool-windows-2019
6+
7+
steps:
8+
- task: UseDotNet@2
9+
displayName: 'Use .Net Core sdk 2.1.302'
10+
inputs:
11+
version: 2.1.302
12+
13+
- task: DotNetCoreCLI@2
14+
displayName: 'Build Debug'
15+
inputs:
16+
command: custom
17+
custom: msbuild
18+
arguments: 'build.proj /p:Configuration=Debug /t:Build /NoLogo'
19+
20+
- task: PublishPipelineArtifact@0
21+
displayName: 'Save test results [preview]'
22+
inputs:
23+
artifactName: 'test-results'
24+
targetPath: 'artifacts\Test'
25+
condition: succeededOrFailed()

0 commit comments

Comments
 (0)