-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathazure-pipelines.yml
44 lines (39 loc) · 1.06 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
trigger:
- master
- main
- beta/*
name: 0.12$(Rev:.r)
variables:
skipDecorator: true
framework: dotnet
checkmarxName: Lime
resources:
repositories:
- repository: templates
type: git
name: Operações/template-take-blip
ref: refs/tags/stable
extends:
template: template-pipeline.yml@templates
parameters:
skipSast: true
sastFilter: "!**/**, src/*"
skipSonarBranch: true
solution: "src/Lime.sln"
packagename: lime-csharp
type: dotnet
to: nuget
nugetServiceConnection: Nuget.org Take
includeSymbols: true
csprojToPack:
- "Lime.Protocol.csproj"
- "Lime.Messaging.csproj"
- "Lime.Transport.Tcp.csproj"
- "Lime.Transport.Redis.csproj"
- "Lime.Transport.WebSocket.csproj"
- "Lime.Transport.AspNetCore.csproj"
skipTestToNuget: true
testProjects: |
src/Lime.Protocol.UnitTests/Lime.Protocol.UnitTests.csproj
src/Lime.Transport.Tcp.UnitTests/Lime.Transport.Tcp.UnitTests.csproj
src/Lime.Transport.WebSocket.UnitTests/Lime.Transport.WebSocket.UnitTests.csproj