From 466fa851bdf7e284be6e216b7c1400fa09a27cdc Mon Sep 17 00:00:00 2001 From: drr00t Date: Tue, 11 Apr 2017 16:02:12 -0300 Subject: [PATCH] #5 removing bench from build. --- .travis.yml | 2 +- build.fsx | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c282606..ecfe94e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,5 +27,5 @@ install: - nuget install NUnit.Runners -Version 3.0.1 -OutputDirectory testrunner script: - - xbuild /p:Configuration=Release ./src/TweetNaCl.sln + - xbuild /p:Configuration=Debug ./src/TweetNaCl.sln - mono ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe src/TweetNaCl.Tests/bin/Release/TweetNaCl.Tests.dll diff --git a/build.fsx b/build.fsx index 896ae47..e6e7aa3 100644 --- a/build.fsx +++ b/build.fsx @@ -16,12 +16,14 @@ Target "Clean" (fun _ -> Target "BuildLibDebug" (fun _ -> !! "src/**/*.csproj" - |> MSBuildRelease buildDir "Build" + -- "src/**/*.Bench.csproj" + |> MSBuildDebug buildDir "Build" |> Log "AppBuild-Output: " ) Target "BuildLibRelease" (fun _ -> !! "src/**/*.csproj" + -- "src/**/*.Bench.csproj" |> MSBuildRelease deployDir "Build" |> Log "AppBuild-Output: " )