diff --git a/.gitignore b/.gitignore index 8ff53697f..bcaad9494 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ bld/ [Bb]in/ [Oo]bj/ BenchmarkDotNet.Artifacts/ +.dotnetcli/ # Visual Studio 2015 cache/options directory .vs/ diff --git a/build.sh b/build.sh index 546235185..829d1d287 100755 --- a/build.sh +++ b/build.sh @@ -9,14 +9,14 @@ dotnet --info dotnet restore for path in src/**/*.csproj; do - dotnet build -c Release ${path} + dotnet build -f netstandard1.0 -c Release ${path} + dotnet build -f netstandard1.3 -c Release ${path} done -for path in test/**/*.csproj; do - dotnet build -f netcoreapp1.0 -c Release ${path} +for path in test/Serilog.Tests/*.csproj; do dotnet test -f netcoreapp1.0 -c Release ${path} done -for path in test/Serilog.PerformanceTests/Serilog.PerformanceTests.csproj; do - dotnet build -f netcoreapp1.0 -c Release ${path} -done +# for path in test/Serilog.PerformanceTests/Serilog.PerformanceTests.csproj; do +# dotnet test -f netcoreapp1.0 -c Release ${path} +# done