diff --git a/Directory.Build.props b/Directory.Build.props
index 624a5346..81c19d27 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -20,6 +20,7 @@
10
true
en-US
+ $(NoWarn);CA1515
enable
package-icon.png
Apache-2.0
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 4fb98167..84ac6911 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -25,8 +25,8 @@
-
-
+
+
diff --git a/build.ps1 b/build.ps1
index 5233f542..a9b9cbb6 100755
--- a/build.ps1
+++ b/build.ps1
@@ -9,7 +9,6 @@ param(
$ErrorActionPreference = "Stop"
$ProgressPreference = "SilentlyContinue"
-$env:MSBUILDTERMINALLOGGER = "auto"
$solutionPath = $PSScriptRoot
$sdkFile = Join-Path $solutionPath "global.json"
diff --git a/global.json b/global.json
index 7c4a0199..b207f0ea 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.203",
+ "version": "9.0.100-preview.1.24101.2",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
diff --git a/src/JustEat.StatsD/JustEat.StatsD.csproj b/src/JustEat.StatsD/JustEat.StatsD.csproj
index 1ae8a6ae..2df56b44 100644
--- a/src/JustEat.StatsD/JustEat.StatsD.csproj
+++ b/src/JustEat.StatsD/JustEat.StatsD.csproj
@@ -24,11 +24,7 @@
-
- true
- true
- true
+
true
- true
diff --git a/tests/Benchmark/Benchmark.csproj b/tests/Benchmark/Benchmark.csproj
index 8d1d61fe..d182500d 100644
--- a/tests/Benchmark/Benchmark.csproj
+++ b/tests/Benchmark/Benchmark.csproj
@@ -2,7 +2,7 @@
$(NoWarn);CA1001;CA1014;CA1812;CA1822
Exe
- net8.0
+ net9.0
true
diff --git a/tests/JustEat.StatsD.Tests/Extensions/TimingConstants.cs b/tests/JustEat.StatsD.Tests/Extensions/TimingConstants.cs
index 300cd84d..4bddda5c 100644
--- a/tests/JustEat.StatsD.Tests/Extensions/TimingConstants.cs
+++ b/tests/JustEat.StatsD.Tests/Extensions/TimingConstants.cs
@@ -5,5 +5,5 @@ public static class TimingConstants
public const int DelayMilliseconds = 500;
public static readonly TimeSpan DeltaFast = TimeSpan.FromMilliseconds(DelayMilliseconds / 4);
- public static readonly TimeSpan DeltaSlow = TimeSpan.FromMilliseconds(DelayMilliseconds * 3);
+ public static readonly TimeSpan DeltaSlow = TimeSpan.FromMilliseconds(DelayMilliseconds * 4);
}
diff --git a/tests/JustEat.StatsD.Tests/JustEat.StatsD.Tests.csproj b/tests/JustEat.StatsD.Tests/JustEat.StatsD.Tests.csproj
index fb2be7c7..0ee24af6 100644
--- a/tests/JustEat.StatsD.Tests/JustEat.StatsD.Tests.csproj
+++ b/tests/JustEat.StatsD.Tests/JustEat.StatsD.Tests.csproj
@@ -2,7 +2,7 @@
$(NoWarn);CA1014;CA1002;CA1861;CA1707;CA1711;CA2007
JustEat.StatsD
- net8.0
+ net9.0