2018-06-21 22:06:51 -07:00
|
|
|
# version format
|
2024-02-29 00:17:15 -05:00
|
|
|
version: 1.1.3-test_{build}
|
|
|
|
|
|
|
|
|
|
# pull request template
|
|
|
|
|
pull_requests:
|
|
|
|
|
do_not_increment_build_number: true
|
2018-06-21 22:04:03 -07:00
|
|
|
|
2018-06-21 22:06:51 -07:00
|
|
|
# vm template
|
2022-04-16 21:52:00 -07:00
|
|
|
image: Visual Studio 2022
|
2018-06-21 22:04:03 -07:00
|
|
|
|
2018-06-21 22:06:51 -07:00
|
|
|
# build step
|
2023-01-02 15:11:52 -08:00
|
|
|
build_script:
|
2024-02-29 00:17:15 -05:00
|
|
|
- dotnet build
|
2020-12-18 14:55:39 -08:00
|
|
|
|
2021-09-24 10:44:49 -07:00
|
|
|
# success/failure tracking
|
|
|
|
|
on_success:
|
|
|
|
|
- ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
|
|
|
|
|
- ps: ./send.ps1 success $env:WEBHOOK_URL
|
|
|
|
|
on_failure:
|
|
|
|
|
- ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1
|
2024-02-29 00:17:15 -05:00
|
|
|
- ps: ./send.ps1 failure $env:WEBHOOK_URL
|