Skip to content

Commit

Permalink
Merge branch 'feature/appveyor_support' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Spatz committed Nov 19, 2014
2 parents 2999803 + c8db115 commit cef5ddb
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GenericStl
GenericStl [![Build status](https://ci.appveyor.com/api/projects/status/36i67p5mqduq1qry/branch/master?svg=true)](https://ci.appveyor.com/project/Musashi178/genericstl/branch/master)
==========

GenericSTL is a library for reading and writing ascii and binary STL files. It is designed to support your own data structures.
Expand Down
74 changes: 74 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# 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: 0.9.3.{build}

# branches to build
#branches:
# whitelist
# only:
# - master
# - production

# Do not build on tags (GitHub only)
skip_tags: true

#---------------------------------#
# environment configuration #
#---------------------------------#

# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf true

# 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

# to add several platforms to build matrix:
#platform:
# - x86
# - Any CPU

# build Configuration, i.e. Debug, Release, etc.
configuration: Release

# to add several configurations to build matrix:
#configuration:
# - Debug
# - Release

build:
project: GenericStl.sln # path to Visual Studio solution or project
publish_nuget: true # package projects with .nuspec files and push to artifacts
publish_nuget_symbols: true # generate and publish NuGet symbol packages

# MSBuild verbosity level
verbosity: minimal

#---------------------------------#
# tests configuration #
#---------------------------------#

test:
assemblies:
- '**\*.Tests.dll'

0 comments on commit cef5ddb

Please sign in to comment.