File tree 2 files changed +35
-0
lines changed
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -38,3 +38,7 @@ indent_size = 2
38
38
[* .sln ]
39
39
charset = utf-8-bom
40
40
indent_style = tab
41
+
42
+ # YAML
43
+ [* .yml ]
44
+ indent_size = 2
Original file line number Diff line number Diff line change
1
+ name : $(Build.DefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
2
+
3
+ trigger :
4
+ batch : true
5
+
6
+ pool :
7
+ vmImage : ' windows-2019'
8
+
9
+ variables :
10
+ solution : ' src/Draftable.CompareAPI.Client.sln'
11
+ nugetConfig : ' NuGet.config'
12
+ buildPlatform : ' Any CPU'
13
+ buildConfiguration : ' Release'
14
+
15
+ steps :
16
+ - task : NuGetToolInstaller@1
17
+
18
+ - task : NuGetCommand@2
19
+ inputs :
20
+ command : ' restore'
21
+ restoreSolution : ' $(solution)'
22
+ feedsToUse : ' config'
23
+ nugetConfigPath : ' $(nugetConfig)'
24
+
25
+ - task : VSBuild@1
26
+ inputs :
27
+ solution : ' $(solution)'
28
+ vsVersion : ' 16.0'
29
+ platform : ' $(buildPlatform)'
30
+ configuration : ' $(buildConfiguration)'
31
+ maximumCpuCount : true
You can’t perform that action at this time.
0 commit comments