From f91321309dd2c70d11343fe9272a0c7caf85e668 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 1 Oct 2017 16:57:13 -0700 Subject: Add root configuration files --- appveyor.yml | 24 ++++++++++++++++++++++++ nuget.config | 9 +++++++++ version.json | 11 +++++++++++ 3 files changed, 44 insertions(+) create mode 100644 appveyor.yml create mode 100644 nuget.config create mode 100644 version.json diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..d9da1df5 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +image: Visual Studio 2017 + +version: 0.0.0.{build} +configuration: Release + +environment: + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true + DOTNET_CLI_TELEMETRY_OPTOUT: 1 + NUGET_XMLDOC_MODE: skip + +build_script: + - appveyor.cmd + +pull_requests: + do_not_increment_build_number: true + +nuget: + disable_publish_on_pr: true + +skip_tags: true + +artifacts: +- path: build\Release\**\*.nupkg + 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 @@ + + + + + + + + + \ 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 @@ +{ + "version": "4.0", + "publicReleaseRefSpec": [ + "^refs/heads/master$" + ], + "cloudBuild": { + "buildNumber": { + "enabled": true + } + } +} -- cgit v1.2.3-55-g6feb