Skip to content

Commit 527fb04

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent 719e982 commit 527fb04

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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: 'ubuntu-latest'
11+
12+
steps:
13+
- task: DotNetCoreCLI@2
14+
inputs:
15+
command: 'restore'
16+
projects: '**/*.csproj'
17+
feedsToUse: 'select'
18+
19+
20+
- task: DotNetCoreCLI@2
21+
displayName: Build
22+
inputs:
23+
command: build
24+
projects: '**/*.csproj'
25+
arguments: '--configuration Release' # Update this to match your need
26+

0 commit comments

Comments
 (0)