aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-01 16:57:13 -0700
committerRob Mensching <rob@firegiant.com>2017-10-02 23:49:54 -0700
commitf91321309dd2c70d11343fe9272a0c7caf85e668 (patch)
tree8330eb932017d21b5e5f1c3c47066d0626b6213e
parent619f6087ac659c3f6c68d060391b9fd55b5882a2 (diff)
downloadwix-f91321309dd2c70d11343fe9272a0c7caf85e668.tar.gz
wix-f91321309dd2c70d11343fe9272a0c7caf85e668.tar.bz2
wix-f91321309dd2c70d11343fe9272a0c7caf85e668.zip
Add root configuration files
-rw-r--r--appveyor.yml24
-rw-r--r--nuget.config9
-rw-r--r--version.json11
3 files changed, 44 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 00000000..d9da1df5
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,24 @@
1image: Visual Studio 2017
2
3version: 0.0.0.{build}
4configuration: Release
5
6environment:
7 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
8 DOTNET_CLI_TELEMETRY_OPTOUT: 1
9 NUGET_XMLDOC_MODE: skip
10
11build_script:
12 - appveyor.cmd
13
14pull_requests:
15 do_not_increment_build_number: true
16
17nuget:
18 disable_publish_on_pr: true
19
20skip_tags: true
21
22artifacts:
23- path: build\Release\**\*.nupkg
24 name: nuget
diff --git a/nuget.config b/nuget.config
new file mode 100644
index 00000000..7ba3a8df
--- /dev/null
+++ b/nuget.config
@@ -0,0 +1,9 @@
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3 <packageSources>
4 <clear />
5 <add key="wixtoolset-dutil" value="https://ci.appveyor.com/nuget/wixtoolset-dutil" />
6 <add key="wixtoolset-core" value="https://ci.appveyor.com/nuget/wixtoolset-core" />
7 <add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
8 </packageSources>
9</configuration> \ No newline at end of file
diff --git a/version.json b/version.json
new file mode 100644
index 00000000..5f857771
--- /dev/null
+++ b/version.json
@@ -0,0 +1,11 @@
1{
2 "version": "4.0",
3 "publicReleaseRefSpec": [
4 "^refs/heads/master$"
5 ],
6 "cloudBuild": {
7 "buildNumber": {
8 "enabled": true
9 }
10 }
11}