-
Notifications
You must be signed in to change notification settings - Fork 4
/
azure-pipelines.yml
91 lines (75 loc) · 2.17 KB
/
azure-pipelines.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/Senparc.Weixin.AI.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
MSBuildSDKsPath: 'C:\\hostedtoolcache\\windows\\dotnet\\sdk\\6.0.407\\Sdks'
steps:
- task: UseDotNet@2
displayName: 'Use .NET SDK 6'
inputs:
version: '6.0.407'
packageType: 'sdk'
performMultiLevelLookup: true
includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: 'dotnet --list-sdks '
inputs:
command: custom
custom: '--list-sdks '
- task: NuGetToolInstaller@1
displayName: 'Use NuGet 6.3.0'
inputs:
versionSpec: '6.3.0'
checkLatest: true
- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: '**/Senparc.Weixin.AI.sln'
feedsToUse: 'config'
externalFeedCredentials: 'nuget-jeffrey-full-key'
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: build
projects: '**/Senparc.Weixin.AI.sln'
arguments: '--configuration Release'
- task: NuGetCommand@2
displayName: Senparc.Weixin.AI -V0
inputs:
command: push
packagesToPush: '**/Senparc.Weixin.AI.0.*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
continueOnError: true
condition: succeededOrFailed()
- task: NuGetCommand@2
displayName: 'Senparc.Weixin.AI -V0 - Symbol'
inputs:
command: push
packagesToPush: '**/Senparc.Weixin.AI.0.*.snupkg'
nuGetFeedType: external
publishFeedCredentials: 'nuget-jeffrey-full-key'
continueOnError: true
condition: succeededOrFailed()
- task: DotNetCoreCLI@2
displayName: Publish
inputs:
command: publish
publishWebProjects: True
arguments: '--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)'
zipAfterPublish: True
enabled: false
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
enabled: false
condition: succeededOrFailed()