forked from DerivcoIpswich/dsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
50 lines (39 loc) · 1.04 KB
/
appveyor.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
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- feature/Build-Modernisation
image: Visual Studio 2017
nuget:
disable_publish_on_pr: true
configuration: Release
before_build:
- ps: mkdir src/Output/Packages
- cmd: nuget restore src/DSharp.sln
- cmd: dotnet restore .\src\
build:
project: src/DSharp.sln
verbosity: detailed
dotnet_csproj:
patch: true
file: '**\*.csproj;**\*.props'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
artifacts:
- path: src\Output\Packages\*.nupkg
deploy:
- provider: NuGet
server: https://www.myget.org/F/dsharptest/api/v2/package
api_key:
secure: ai0SCQmu5aYBepeAYVjCylgRhjqH6VuSVQyn+Clmwdl+SE0yFCMH84oeyFgh8gqO
skip_symbols: true
notifications:
- provider: Slack
incoming_webhook: https://hooks.slack.com/services/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
on_build_success: true
on_build_failure: true
on_build_status_changed: true