-
Notifications
You must be signed in to change notification settings - Fork 19
/
appveyor.yml
38 lines (37 loc) · 861 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
35
36
37
38
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2022
configuration: Release
platform: Any CPU
nuget:
disable_publish_on_pr: true
disable_publish_octopus: true
before_build:
- ps: >-
Install-Module -Name SignPath
nuget restore
build:
project: AspNetCore.PluginManager.Solution.sln
parallel: true
verbosity: minimal
after_build:
- cmd: >-
7z a NugetFiles.zip %APPVEYOR_BUILD_FOLDER%\Output\AnyCPU\Release\*.nupkg
- cmd: >-
7z a -r Website.zip %APPVEYOR_BUILD_FOLDER%\Output\AnyCPU\Release\net8.0\*.*
test: off
artifacts:
- path: Nugetfiles.zip
name: Nuget Packages
- path: Website.zip
name: Website
- path: Output\Signed\**\*
name: Signed
notifications:
- provider: Email
to:
on_build_success: true
on_build_failure: true
on_build_status_changed: true