diff options
author | Rob Mensching <rob@firegiant.com> | 2017-09-03 15:30:10 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-09-03 15:30:10 -0700 |
commit | 2a72f06449431b326c671cf59811b9cefb73a2c8 (patch) | |
tree | 15a663170c24eb29a79dbcdba2b77701ef37676f /appveyor.yml | |
parent | 83d09505bc2e5ccb9840a30badb875d4061dd797 (diff) | |
download | wix-2a72f06449431b326c671cf59811b9cefb73a2c8.tar.gz wix-2a72f06449431b326c671cf59811b9cefb73a2c8.tar.bz2 wix-2a72f06449431b326c671cf59811b9cefb73a2c8.zip |
Initialize repo
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..432653c6 --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,27 @@ | |||
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 | before_build: | ||
12 | - nuget restore | ||
13 | |||
14 | build_script: | ||
15 | - appveyor.cmd | ||
16 | |||
17 | pull_requests: | ||
18 | do_not_increment_build_number: true | ||
19 | |||
20 | nuget: | ||
21 | disable_publish_on_pr: true | ||
22 | |||
23 | skip_tags: true | ||
24 | |||
25 | artifacts: | ||
26 | - path: build\Release\**\*.nupkg | ||
27 | name: nuget | ||