diff --git a/samples/BenchmarkDotNet.Samples.FSharp/BenchmarkDotNet.Samples.FSharp.fsproj b/samples/BenchmarkDotNet.Samples.FSharp/BenchmarkDotNet.Samples.FSharp.fsproj
index c4a3b3deae..234a1fa224 100644
--- a/samples/BenchmarkDotNet.Samples.FSharp/BenchmarkDotNet.Samples.FSharp.fsproj
+++ b/samples/BenchmarkDotNet.Samples.FSharp/BenchmarkDotNet.Samples.FSharp.fsproj
@@ -5,7 +5,7 @@
Exe
- net461;netcoreapp2.0
+ net461;netcoreapp2.1
diff --git a/samples/BenchmarkDotNet.Samples.FSharp/Program.fs b/samples/BenchmarkDotNet.Samples.FSharp/Program.fs
index 1685019f15..74cf94f91f 100644
--- a/samples/BenchmarkDotNet.Samples.FSharp/Program.fs
+++ b/samples/BenchmarkDotNet.Samples.FSharp/Program.fs
@@ -34,7 +34,7 @@ type StringKeyComparison () =
[]
member self.OrdinalLookup () = lookup arr dict2
-#if !NETCOREAPP2_0
+#if !NETCOREAPP2_1
[]
#endif
type TailCallDetector () =
diff --git a/samples/BenchmarkDotNet.Samples/BenchmarkDotNet.Samples.csproj b/samples/BenchmarkDotNet.Samples/BenchmarkDotNet.Samples.csproj
index 27d4c79906..26b066c837 100644
--- a/samples/BenchmarkDotNet.Samples/BenchmarkDotNet.Samples.csproj
+++ b/samples/BenchmarkDotNet.Samples/BenchmarkDotNet.Samples.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.Samples
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.Samples
Exe
diff --git a/tests/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly.csproj b/tests/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly.csproj
index c3342556f0..afc682b0fd 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly.csproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly/BenchmarkDotNet.IntegrationTests.ConfigPerAssembly.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.IntegrationTests.ConfigPerAssembly
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.IntegrationTests.ConfigPerAssembly
BenchmarkDotNet.IntegrationTests.ConfigPerAssembly
diff --git a/tests/BenchmarkDotNet.IntegrationTests.DisabledOptimizations/BenchmarkDotNet.IntegrationTests.DisabledOptimizations.csproj b/tests/BenchmarkDotNet.IntegrationTests.DisabledOptimizations/BenchmarkDotNet.IntegrationTests.DisabledOptimizations.csproj
index d144846bd3..acfb50bd67 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.DisabledOptimizations/BenchmarkDotNet.IntegrationTests.DisabledOptimizations.csproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.DisabledOptimizations/BenchmarkDotNet.IntegrationTests.DisabledOptimizations.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.IntegrationTests.DisabledOptimizations
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.IntegrationTests.DisabledOptimizations
BenchmarkDotNet.IntegrationTests.DisabledOptimizations
diff --git a/tests/BenchmarkDotNet.IntegrationTests.EnabledOptimizations/BenchmarkDotNet.IntegrationTests.EnabledOptimizations.csproj b/tests/BenchmarkDotNet.IntegrationTests.EnabledOptimizations/BenchmarkDotNet.IntegrationTests.EnabledOptimizations.csproj
index 02c916fefe..cb1732ab74 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.EnabledOptimizations/BenchmarkDotNet.IntegrationTests.EnabledOptimizations.csproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.EnabledOptimizations/BenchmarkDotNet.IntegrationTests.EnabledOptimizations.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.IntegrationTests.EnabledOptimizations
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.IntegrationTests.EnabledOptimizations
BenchmarkDotNet.IntegrationTests.EnabledOptimizations
diff --git a/tests/BenchmarkDotNet.IntegrationTests.FSharp/BenchmarkDotNet.IntegrationTests.FSharp.fsproj b/tests/BenchmarkDotNet.IntegrationTests.FSharp/BenchmarkDotNet.IntegrationTests.FSharp.fsproj
index 11a82ad966..a347bb2c22 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.FSharp/BenchmarkDotNet.IntegrationTests.FSharp.fsproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.FSharp/BenchmarkDotNet.IntegrationTests.FSharp.fsproj
@@ -5,7 +5,7 @@
- net461;netcoreapp2.0
+ net461;netcoreapp2.1
false
diff --git a/tests/BenchmarkDotNet.IntegrationTests.Static/BenchmarkDotNet.IntegrationTests.Static.csproj b/tests/BenchmarkDotNet.IntegrationTests.Static/BenchmarkDotNet.IntegrationTests.Static.csproj
index 8b519731d1..86110bc799 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.Static/BenchmarkDotNet.IntegrationTests.Static.csproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.Static/BenchmarkDotNet.IntegrationTests.Static.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.IntegrationTests.Static
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.IntegrationTests.Static
BenchmarkDotNet.IntegrationTests.Static
diff --git a/tests/BenchmarkDotNet.IntegrationTests.VisualBasic/BenchmarkDotNet.IntegrationTests.VisualBasic.vbproj b/tests/BenchmarkDotNet.IntegrationTests.VisualBasic/BenchmarkDotNet.IntegrationTests.VisualBasic.vbproj
index cb8085aac2..294757e438 100644
--- a/tests/BenchmarkDotNet.IntegrationTests.VisualBasic/BenchmarkDotNet.IntegrationTests.VisualBasic.vbproj
+++ b/tests/BenchmarkDotNet.IntegrationTests.VisualBasic/BenchmarkDotNet.IntegrationTests.VisualBasic.vbproj
@@ -5,7 +5,7 @@
- net461;netcoreapp2.0
+ net461;netcoreapp2.1
diff --git a/tests/BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj b/tests/BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj
index 3aabb2daeb..0399e69959 100755
--- a/tests/BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj
+++ b/tests/BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.IntegrationTests
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
true
BenchmarkDotNet.IntegrationTests
BenchmarkDotNet.IntegrationTests
diff --git a/tests/BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj b/tests/BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj
index 1ab3c595d4..b4324e58c0 100755
--- a/tests/BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj
+++ b/tests/BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj
@@ -2,7 +2,7 @@
BenchmarkDotNet.Tests
- net461;netcoreapp2.0;netcoreapp2.1
+ net461;netcoreapp2.1
BenchmarkDotNet.Tests
BenchmarkDotNet.Tests
true
diff --git a/tests/runCoreTests.cmd b/tests/runCoreTests.cmd
index 6f91801919..93c5c0f258 100644
--- a/tests/runCoreTests.cmd
+++ b/tests/runCoreTests.cmd
@@ -12,24 +12,24 @@ if NOT %ERRORLEVEL% == 0 (
)
echo -----------------------------
-echo Running Core 2.0 Unit tests
+echo Running Core 2.1 Unit tests
echo -----------------------------
-call dotnet test "BenchmarkDotNet.Tests\BenchmarkDotNet.Tests.csproj" --configuration Release --framework netcoreapp2.0
+call dotnet test "BenchmarkDotNet.Tests\BenchmarkDotNet.Tests.csproj" --configuration Release --framework netcoreapp2.1
if NOT %ERRORLEVEL% == 0 (
- echo CORE 2.0 Unit tests has failed
+ echo CORE 2.1 Unit tests has failed
goto end
)
echo -----------------------------
-echo Running Core 2.0 Integration tests
+echo Running Core 2.1 Integration tests
echo -----------------------------
-call dotnet test "BenchmarkDotNet.IntegrationTests\BenchmarkDotNet.IntegrationTests.csproj" --configuration Release --framework netcoreapp2.0
+call dotnet test "BenchmarkDotNet.IntegrationTests\BenchmarkDotNet.IntegrationTests.csproj" --configuration Release --framework netcoreapp2.1
if NOT %ERRORLEVEL% == 0 (
- echo CORE 2.0 Integration tests has failed
+ echo CORE 2.1 Integration tests has failed
goto end
)
diff --git a/tests/runCoreTests.sh b/tests/runCoreTests.sh
index 8f1dfa059e..4e3ad59e6a 100755
--- a/tests/runCoreTests.sh
+++ b/tests/runCoreTests.sh
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
-dotnet test BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj --configuration Release --framework netcoreapp2.0 2>&1 | tee tests.log
-dotnet test BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj --configuration Release --framework netcoreapp2.0 2>&1 | tee integration-tests.log
+dotnet test BenchmarkDotNet.Tests/BenchmarkDotNet.Tests.csproj --configuration Release --framework netcoreapp2.1 2>&1 | tee tests.log
+dotnet test BenchmarkDotNet.IntegrationTests/BenchmarkDotNet.IntegrationTests.csproj --configuration Release --framework netcoreapp2.1 2>&1 | tee integration-tests.log