From 10b7db1423ffcb4290bad7c6913f85c67aebb1fe Mon Sep 17 00:00:00 2001 From: Matthew Erbs <matthew.erbs@merbla.com> Date: Tue, 31 May 2016 18:52:22 +1000 Subject: [PATCH] Removed the target framework on lib build. --- build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.sh b/build.sh index 182b88a1f..9cf05e9a0 100755 --- a/build.sh +++ b/build.sh @@ -1,13 +1,13 @@ #!/bin/bash dotnet restore for path in src/*/project.json; do - dirname="$(dirname "${path}")" - dotnet build ${dirname} -f netstandard1.0 -c Release - dotnet build ${dirname} -f netstandard1.3 -c Release + dirname="$(dirname "${path}")" + dotnet build ${dirname} -c Release + dotnet build ${dirname} -c Release done for path in test/Serilog.Tests/project.json; do - dirname="$(dirname "${path}")" + dirname="$(dirname "${path}")" dotnet build ${dirname} -f netcoreapp1.0 -c Release dotnet test ${dirname} -f netcoreapp1.0 -c Release -done \ No newline at end of file +done