diff options
author | Rob Mensching <rob@firegiant.com> | 2017-08-20 15:16:00 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-08-20 15:16:00 -0700 |
commit | a62610d23d6feb98be3b1e529a4e81b19d77d9d8 (patch) | |
tree | 629f5696c035bee426700fb4e6fd7b12c2dd48dc /appveyor.yml | |
parent | 2355e999244f47c312b6a235ef376ae8ea2ef80c (diff) | |
download | wix-a62610d23d6feb98be3b1e529a4e81b19d77d9d8.tar.gz wix-a62610d23d6feb98be3b1e529a4e81b19d77d9d8.tar.bz2 wix-a62610d23d6feb98be3b1e529a4e81b19d77d9d8.zip |
Add root configuration files
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..aa6bcaae --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,24 @@ | |||
1 | image: Visual Studio 2017 | ||
2 | |||
3 | version: 0.0.0.{build} | ||
4 | configuration: Release | ||
5 | |||
6 | environment: | ||
7 | DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
8 | DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
9 | NUGET_XMLDOC_MODE: skip | ||
10 | |||
11 | build_script: | ||
12 | - dotnet pack | ||
13 | |||
14 | pull_requests: | ||
15 | do_not_increment_build_number: true | ||
16 | |||
17 | nuget: | ||
18 | disable_publish_on_pr: true | ||
19 | |||
20 | skip_tags: true | ||
21 | |||
22 | artifacts: | ||
23 | - path: build\Release\**\*.nupkg | ||
24 | name: nuget | ||