-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
131 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.4.{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' |