welsonjs/.appveyor.yml

36 lines
1.4 KiB
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
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"
- 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="x64"
2024-08-06 11:08:17 +00:00
artifacts:
2024-08-06 11:27:40 +00:00
- path: WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x86\Debug\WelsonJS.Toolkit.dll
name: WelsonJS.Toolkit.Debug.x86
- path: WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x64\Debug\WelsonJS.Toolkit.dll
name: WelsonJS.Toolkit.Debug.x64
- path: WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x86\Release\WelsonJS.Toolkit.dll
2024-08-06 11:12:19 +00:00
name: WelsonJS.Toolkit.x86
2024-08-06 11:27:40 +00:00
- path: WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x64\Release\WelsonJS.Toolkit.dll
2024-08-06 11:12:19 +00:00
name: WelsonJS.Toolkit.x64
2024-08-06 11:27:40 +00:00
- path: WelsonJS.Toolkit\WelsonJS.Service\bin\x86\Debug\WelsonJS.Service.exe
name: WelsonJS.Service.Debug
- path: WelsonJS.Toolkit\WelsonJS.Service\bin\x86\Release\WelsonJS.Service.exe
2024-08-06 11:08:17 +00:00
name: WelsonJS.Service
notifications:
- provider: Email
to:
- abuse@catswords.net
subject: 'Build #{build} {status}'
on_build_success: true
on_build_failure: true