welsonjs/.appveyor.yml
Namhyeon, Go 1863a76a4c
Some checks failed
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Update build configurations
2024-08-15 17:47:29 +09:00

34 lines
950 B
YAML

version: 0.2.7.build{build}
image: Visual Studio 2019
clone_folder: C:\projects\welsonjs
environment:
matrix:
- CONFIGURATION: Debug
- CONFIGURATION: Release
before_build:
- nuget restore WelsonJS.Toolkit
build_script:
- 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"
after_build:
- 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%\*
artifacts:
- path: WelsonJS.Toolkit.zip
name: WelsonJS.Toolkit
- path: WelsonJS.Service.zip
name: WelsonJS.Service
notifications:
- provider: Email
to:
- abuse@catswords.net
subject: 'Build #{build} {status}'
on_build_success: false
on_build_failure: true