Skip to content

Commit

Permalink
Removed the target framework on lib build.
Browse files Browse the repository at this point in the history
  • Loading branch information
merbla committed May 31, 2016
1 parent 6ddc5ba commit 10b7db1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sh
Original file line number Diff line number Diff line change
@@ -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
done

0 comments on commit 10b7db1

Please sign in to comment.