diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..aa5a1d8 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,41 @@ +version: 1.0.{build} +branches: + # whitelist + only: + - master + + # blacklist + except: + - gh-pages +# Build worker image (VM template) +image: Visual Studio 2015 + +# enable patching of AssemblyInfo.* files +assembly_info: + patch: true + file: AssemblyInfo.* + assembly_version: "2.2.{build}" + assembly_file_version: "{version}" + assembly_informational_version: "{version}" + +#---------------------------------# +# build configuration # +#---------------------------------# + +# build platform, i.e. x86, x64, Any CPU. This setting is optional. +platform: Any CPU + +build: + parallel: true # enable MSBuild parallel builds + project: ClosedXML/ClosedXML/ClosedXML/ClosedXML.sln # path to Visual Studio solution or project + + + +configuration : Release + +#Restore +before_build: + - nuget restore + +build: + verbosity: minimal