-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathappveyor.yml
More file actions
42 lines (36 loc) · 958 Bytes
/
appveyor.yml
File metadata and controls
42 lines (36 loc) · 958 Bytes
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
version: 6.0.0.{build}
clone_folder: c:\projects\nlogweb
configuration: Release
image: Visual Studio 2022
platform: Any CPU
nuget:
project_feed: true
matrix:
fast_finish: true
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
install:
- ps: |
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '10.0.102' -InstallDir "$env:ProgramFiles\dotnet"
build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: quiet
skip_tags: true
skip_branch_with_pr: true
build_script:
- ps: .\build.ps1
deploy:
- provider: NuGet
api_key:
secure: FStb6Kr5sjHdPq4EzjHeXkW4DQDlS92kM9ZWDhApT68+j4WN7J7cnvvk3fj/hMxi
on:
branch: master
test_script:
- dotnet test
artifacts:
- path: '**\NLog.Web.*.nupkg'
- path: '**\NLog.Web.*.snupkg'