From 8e6774907f7f6e741f2fd370a324af6b9b7bdf0b Mon Sep 17 00:00:00 2001 From: Alexander Bogarsukov Date: Mon, 25 Feb 2019 19:58:33 +0200 Subject: [PATCH 1/2] Updated build script to create Release assemblies as output --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 637adc7..8daa9e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,5 +6,5 @@ install: - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner script: - - msbuild /p:Configuration=Debug C-Sharp-Promise.sln + - msbuild /p:Configuration=Release C-Sharp-Promise.sln - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.exe ./bin/Debug/RSG.Promise.Tests.dll From 87ddff2f4a1bbfcc0eadb2f48e8f201a56ffc013 Mon Sep 17 00:00:00 2001 From: Alexander Bogarsukov Date: Mon, 25 Feb 2019 20:15:22 +0200 Subject: [PATCH 2/2] Fixed tests folder --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8daa9e3..0066102 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ install: script: - msbuild /p:Configuration=Release C-Sharp-Promise.sln - - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.exe ./bin/Debug/RSG.Promise.Tests.dll + - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.exe ./bin/Release/RSG.Promise.Tests.dll