forked from jaegertracing/jaeger-client-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
34 lines (26 loc) · 780 Bytes
/
.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
# AppVeyor Build number is incremental and not related to actual version number of the product
version: '{build}'
image: Visual Studio 2019
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
# DOCKER_USER:
# secure: xxxxxxx
# DOCKER_PASS:
# secure: yyyyyyy
#on_finish:
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
build_script:
- ps: .\build.ps1
test: off
#deploy_script:
# - ps: .\deploy.ps1
artifacts:
- path: artifacts\nuget\*.nupkg
name: NuGet
# Deploy every successful build (except PRs) to development feed
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true