Skip to content

Commit e42450e

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent 4085ba9 commit e42450e

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

azure-pipelines.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
name: 'default'
11+
12+
steps:
13+
- script: dotnet restore
14+
- task: DotNetCoreCLI@2
15+
displayName: Build
16+
inputs:
17+
command: build
18+
projects: '**/*.csproj'
19+
arguments: '--configuration Release' # Update this to match your need

0 commit comments

Comments
 (0)