Skip to content

Commit 770cec8

Browse files
author
Andrew Hoefling
committed
Added comments and removed parameters since they now have default values
1 parent d9b8341 commit 770cec8

1 file changed

Lines changed: 27 additions & 7 deletions

File tree

azure-pipelines.yml

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,37 @@
1+
# The DNN Community Modules Build .yml.
2+
# Add steps to the build, run tests, deploy and more:
3+
# https://aka.ms/yml
4+
#
5+
# NOTE: Whitespace is super important with yml, please respect
6+
# the necessary whitespace for different jobs/tasks/etc
7+
18
resources:
29
repositories:
3-
- repository: DevOps
10+
# References the DNN Community Modules Build DevOps repository which contains
11+
# yml files that will make running the build simple. It is not required to use
12+
# the repository but it will make configuring the build easier
13+
- repository: DevOps
414
type: git
515
ref: 'refs/heads/master'
616
name: "DevOps.Templates"
717

18+
19+
# Build triggers tell Azure DevOps when to run the build.
20+
# PR builds are implied unless explicitly defined
821
trigger:
922
branches:
1023
include:
11-
- master
12-
24+
- master # The CI build will execute with every commit to the master branch of PR merge
25+
1326
jobs:
14-
- template: azure-pipelines.yml@DevOps
15-
parameters:
16-
version: "5.0.1.$[counter('versioncounter', 0)]"
17-
moduleType: "WEB-FORMS"
27+
- template: azure-pipelines.yml@DevOps # The entry point template from the DevOps repository
28+
29+
# there are optional parameters you can send to the build. If
30+
# you would like to use the option parameters just uncomment
31+
# 'parameters:' and then the parameters you would like to use
32+
33+
#parameters:
34+
#version: "5.0.1.$[counter('versioncounter', 0)]" # Sets the current build version that includes a revision counter. Default: '1.0.0.0'
35+
#configuration: 'Release' # The build configuration. Default: 'Release'
36+
#platform: 'Any CPU' # The build platform. Default: 'Any CPU'
37+
#solution: '**/*.sln' # The path to the solution file. Default: '**/*.sln'

0 commit comments

Comments
 (0)