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