Skip to content

Commit ec51cf7

Browse files
Set up CI with Azure Pipelines for windows build
[skip ci]
1 parent 8e756ee commit ec51cf7

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

azure-pipelines-1.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Starter pipeline
2+
# Start with a minimal pipeline that you can customize to build and deploy your code.
3+
# Add steps that build, run tests, deploy, and more:
4+
# https://aka.ms/yaml
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'windows-2019'
11+
12+
steps:
13+
14+
15+
16+
- task: DotNetCoreCLI@2
17+
inputs:
18+
command: 'restore'
19+
feedsToUse: 'select'
20+
displayName: 'Restore Packages'
21+
- task: DotNetCoreCLI@2
22+
inputs:
23+
command: 'build'
24+
displayName: 'Build Project'
25+
26+
- task: DotNetCoreCLI@2
27+
inputs:
28+
command: 'test'
29+
displayName: 'Run Unit Tests'

0 commit comments

Comments
 (0)