forked from phatcher/wikiexport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yaml
44 lines (40 loc) · 933 Bytes
/
azure-pipelines.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
trigger:
batch: true
branches:
include:
- main
- develop
- release/*
- feature/*
- bugfix/*
- hotfix/*
# - refs/tags/*
paths:
exclude:
- docs/*
- wiki/*
pool:
vmImage: 'windows-latest'
resources:
repositories:
- repository: templates
type: git
name: templates/templates
ref: dotnetcli
steps:
# Check out the code and keep the token so we can tag the repository
- checkout: self
persistCredentials: true
- template: library-template.yaml@templates
# NB Override parameters here as needed
parameters:
# solution: '**/*.sln'
# buildPlatform: 'Any CPU'
# buildConfiguration: 'Release'
nugetFeed: '33ee36b3-29ec-4a24-9150-ff4a3fcfcbfe'
testProjects: '**/*.sln'
# testFilter: '(TestCategory!=Integration)&(TestCategory!=Smoke)'
# testSettings: 'coverlet.runsettings'
publishPackages: true
codeCoverage: true
gitTag: false