Files
SabreTools/appveyor.yml
2018-06-21 22:12:54 -07:00

37 lines
667 B
YAML

# version format
version: 0.9.9-test_{build}
# vm template
image: Visual Studio 2017
# environment variables
environment:
EnableNuGetPackageRestore: true
# msbuild configuration
platform:
- x64
- Mono
configuration:
- Debug
# install dependencies
install:
- ps: appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
# pre-build script
before_build:
- ps: nuget restore
# build step
build:
verbosity: minimal
# post-build step
after_build:
- ps: 7z a sabretools_%CONFIGURATION%-%PLATFORM %.zip C:\projects\Debug*\
# artifact linking
artifacts:
- path: sabretools_$(configuration)-$(platform).zip
name: SabreTools ($(platform))