From 85b11e7d7fa3f2df411eb4f131fa57ff095a3458 Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Fri, 23 Feb 2018 17:20:21 +0100 Subject: [PATCH 1/2] Build octorun before anything else in appveyor --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index a5d0c4580..9a1098d41 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -43,6 +43,9 @@ install: nuget restore GitHub.Unity.sln +before_build: + - cmd: msbuild GitHub.Unity.sln /target:OctoRun /Configuration:Release + assembly_info: patch: false file: common\SolutionInfo.cs From bfc3436d3d343baa4c7e5d9516e8387b9c31bf3e Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Fri, 23 Feb 2018 17:24:20 +0100 Subject: [PATCH 2/2] Call msbuild correctly, doh --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 9a1098d41..2bcf0501c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -44,7 +44,7 @@ install: nuget restore GitHub.Unity.sln before_build: - - cmd: msbuild GitHub.Unity.sln /target:OctoRun /Configuration:Release + - cmd: msbuild GitHub.Unity.sln /target:OctoRun /property:Configuration=Release assembly_info: patch: false