From e0f344af251869d5b6db89fbebc0f868ac234870 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 15 Nov 2021 16:08:31 -0500 Subject: [PATCH] Update appveryor, removed travis we dont need two of them. --- .travis.yml | 8 -------- README.md | 2 +- appveyor.yml | 17 ++++++----------- 3 files changed, 7 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2d6e4735f..000000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: csharp -dist: xenial -sudo: required -mono: none -dotnet: 5.0 -script: - - dotnet restore - - dotnet build \ No newline at end of file diff --git a/README.md b/README.md index 6450bf482..d2c67e92a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## CypherCore [![Build Status](https://travis-ci.org/CypherCore/CypherCore.svg?branch=master)](https://travis-ci.org/CypherCore/CypherCore) [![Build status](https://ci.appveyor.com/api/projects/status/ge4hjp1h1d28q25j?svg=true)](https://ci.appveyor.com/project/hondacrx/cyphercore) +## CypherCore [![Build status](https://ci.appveyor.com/api/projects/status/ge4hjp1h1d28q25j?svg=true)](https://ci.appveyor.com/project/hondacrx/cyphercore) CypherCore is an open source server project for World of Warcraft written in C#. diff --git a/appveyor.yml b/appveyor.yml index 6fb217447..c7d392414 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,16 +1,11 @@ -version: '{build}' +version: 1.0.{build} pull_requests: do_not_increment_build_number: true -image: Visual Studio 2019 +image: Visual Studio 2022 -clone_script: -- cmd: git clone -q --branch=master --recursive https://github.com/CypherCore/CypherCore.git C:\projects\CypherCore-master +before_build: +- cmd: dotnet restore -build_script: -- cmd: >- - cd "C:/projects/CypherCore-master" - - dotnet restore - - dotnet build /p:Platform=win-x64 +build: + verbosity: minimal \ No newline at end of file