From f4835b56f21958661422554b3d7dcad3f4644487 Mon Sep 17 00:00:00 2001 From: Bianco Veigel Date: Mon, 10 Sep 2018 21:43:31 +0200 Subject: [PATCH] add appveyor --- appveyor.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..2d8f9e0 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,27 @@ +version: 1.0.{build} +pull_requests: + do_not_increment_build_number: true +branches: + only: + - master +skip_tags: true +image: Visual Studio 2017 +dotnet_csproj: + patch: true + file: '**\*.csproj' + version: '{version}' + package_version: '{version}' + assembly_version: '{version}' + file_version: '{version}' + informational_version: '{version}' +nuget: + disable_publish_on_pr: true +build_script: +- cmd: dotnet publish -c Release +artifacts: +- path: src\yate\bin\Release\yate.*.nupkg + name: yate.nupkg +- path: src\ystatus\bin\Release\netcoreapp2.1\publish\ + name: ystatus +- path: src\ystatus.redis\bin\Release\netcoreapp2.1\publish\ + name: ystatus.redis \ No newline at end of file