welsonjs/.appveyor.yml

34 lines
950 B
YAML
Raw Normal View History

2024-08-06 11:13:10 +00:00
version: 0.2.7.build{build}
2024-08-06 11:08:17 +00:00
image: Visual Studio 2019
clone_folder: C:\projects\welsonjs
environment:
matrix:
2024-08-06 11:12:19 +00:00
- CONFIGURATION: Debug
- CONFIGURATION: Release
2024-08-06 11:08:17 +00:00
2024-08-12 04:02:11 +00:00
before_build:
2024-08-12 04:03:52 +00:00
- nuget restore WelsonJS.Toolkit
2024-08-12 04:02:11 +00:00
2024-08-06 11:08:17 +00:00
build_script:
2024-08-06 11:12:19 +00:00
- msbuild "C:\projects\welsonjs\WelsonJS.Toolkit\WelsonJS.Toolkit.sln" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=%CONFIGURATION% /p:Platform="x86"
2024-08-13 08:59:18 +00:00
after_build:
2024-08-15 08:47:29 +00:00
- cmd: 7z a WelsonJS.Toolkit.zip WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x86\%CONFIGURATION%\*
- cmd: 7z a WelsonJS.Service.zip WelsonJS.Toolkit\WelsonJS.Service\bin\x86\%CONFIGURATION%\*
2024-08-13 08:59:18 +00:00
2024-08-06 11:08:17 +00:00
artifacts:
2024-08-15 08:47:29 +00:00
- path: WelsonJS.Toolkit.zip
name: WelsonJS.Toolkit
- path: WelsonJS.Service.zip
name: WelsonJS.Service
2024-08-06 11:08:17 +00:00
notifications:
- provider: Email
to:
- abuse@catswords.net
subject: 'Build #{build} {status}'
2024-08-12 04:12:50 +00:00
on_build_success: false
2024-08-06 11:08:17 +00:00
on_build_failure: true