diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..b078d91 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,27 @@ +# Notes: +# - Minimal appveyor.yml file is an empty file. All sections are optional. +# - Indent each level of configuration with 2 spaces. Do not use tabs! +# - All section names are case-sensitive. +# - Section names should be unique on each level. + +#---------------------------------# +# general configuration # +#---------------------------------# + +# version format +version: 1.0.{build} + +#---------------------------------# +# environment configuration # +#---------------------------------# + +# Build worker image (VM template) +image: Visual Studio 2017 + +platform: + - x64 + - x86 + +configuration: + - Debug + - Release