mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
28 lines
565 B
YAML
28 lines
565 B
YAML
# Version Format
|
|
version: 0.9.9-test_{build}
|
|
|
|
# VM Template
|
|
image: Visual Studio 2017
|
|
|
|
# Environment Variables
|
|
environment:
|
|
EnableNuGetPackageRestore: true
|
|
|
|
|
|
platform:
|
|
- x64
|
|
- Mono
|
|
configuration:
|
|
- Debug
|
|
install:
|
|
- ps: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
|
|
before_build:
|
|
- ps: nuget restore
|
|
build:
|
|
verbosity: minimal
|
|
after_build:
|
|
- ps: 7z a sabretools_$(configuration)-$(platform).zip C:\projects\Debug*\
|
|
artifacts:
|
|
- path: sabretools_$(configuration)-$(platform).zip
|
|
name: SabreTools ($(platform))
|