Newer
Older
ClosedXML / appveyor.yml
@Francois Botha Francois Botha on 18 Apr 2017 914 bytes Use VS2017 and add artifacts
version: 0.8.{build}
branches:
  # whitelist
  only:
    - develop

  # blacklist
  except:
    - gh-pages
# Build worker image (VM template)
image: Visual Studio 2017

# enable patching of AssemblyInfo.* files
assembly_info:
  patch: true
  file: AssemblyInfo.*
  assembly_version: "{version}"
  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.sln       # path to Visual Studio solution or project
  verbosity: minimal
 
configuration : Release

#Restore
before_build:
  - nuget restore
  
artifacts:
- path: ClosedXML/bin/Release/ClosedXML.dll
- path: ClosedXML/bin/Release/ClosedXML.xml