diff --git a/.travis.yml b/.travis.yml index db24c598..18601162 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ sudo: false language: csharp - +mono: + - 4.2.3 install: - nuget restore ./ScriptCs.sln diff --git a/build.sh b/build.sh index 41b4f391..3aa92e4f 100755 --- a/build.sh +++ b/build.sh @@ -10,6 +10,6 @@ mono ./.nuget/NuGet.exe restore ./ScriptCs.sln # script mkdir -p artifacts/Release/bin xbuild ./ScriptCs.sln /property:Configuration=Release /nologo /verbosity:normal -cp src/*/bin/Release/* artifacts/Release/bin/ +cp src/ScriptCs/bin/Release/* artifacts/Release/bin/ mono ./packages/xunit.runners.1.9.2/tools/xunit.console.clr4.exe test/ScriptCs.Tests.Acceptance/bin/Release/ScriptCs.Tests.Acceptance.dll /xml artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.xml /html artifacts/ScriptCs.Tests.Acceptance.dll.TestResult.html