diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 26ccddc7..c7847dd2 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -35,7 +35,7 @@ A clear and concise description of what actually happened. If an exception occur
- Library Version [e.g. 0.4.0]
- xunit version [e.g. 2.4.0]
- .NET version (e.g. output from `dotnet --info`)
- - IDE and version [e.g. Visual Studio 17.8.0]
+ - IDE and version [e.g. Visual Studio 17.9.0]
-->
### Additional context
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 145f9ee8..29154c91 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -57,7 +57,7 @@ jobs:
- uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1
name: Upload coverage to Codecov
with:
- file: ./artifacts/coverage/coverage.net8.0.cobertura.xml
+ file: ./artifacts/coverage/coverage.net9.0.cobertura.xml
flags: ${{ matrix.os_name }}
token: ${{ secrets.CODECOV_TOKEN }}
diff --git a/.vsconfig b/.vsconfig
index a991ed17..8114a325 100644
--- a/.vsconfig
+++ b/.vsconfig
@@ -3,7 +3,7 @@
"components": [
"Microsoft.VisualStudio.Component.CoreEditor",
"Microsoft.VisualStudio.Workload.CoreEditor",
- "Microsoft.NetCore.Component.Runtime.8.0",
+ "Microsoft.NetCore.Component.Runtime.9.0",
"Microsoft.NetCore.Component.SDK",
"Microsoft.VisualStudio.Component.Roslyn.Compiler",
"Microsoft.VisualStudio.Component.Roslyn.LanguageServices"
diff --git a/Directory.Build.props b/Directory.Build.props
index c2cc85fa..b31ed346 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -25,7 +25,7 @@
latest
true
en-US
- $(NoWarn);CA1848
+ $(NoWarn);CA1515;CA1848
$(NoWarn);SA0001
enable
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 21c0afd6..414bd6fe 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -2,7 +2,7 @@
-
+
diff --git a/README.md b/README.md
index fa3b79c6..5a4b5ee3 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ This project is licensed under the [Apache 2.0](http://www.apache.org/licenses/L
## Building and Testing
-Compiling the library yourself requires Git and the [.NET SDK](https://www.microsoft.com/net/download/core "Download the .NET SDK") to be installed (version `8.0.100` or later).
+Compiling the library yourself requires Git and the [.NET SDK](https://www.microsoft.com/net/download/core "Download the .NET SDK") to be installed (version `9.0.100` or later).
To build and test the library locally from a terminal/command-line, run one of the following set of commands:
diff --git a/build.ps1 b/build.ps1
index bfc3e3d2..afc4c6c9 100755
--- a/build.ps1
+++ b/build.ps1
@@ -11,10 +11,6 @@ param(
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = "true"
$env:NUGET_XMLDOC_MODE = "skip"
-if ($null -eq $env:MSBUILDTERMINALLOGGER) {
- $env:MSBUILDTERMINALLOGGER = "auto"
-}
-
$ErrorActionPreference = "Stop"
$ProgressPreference = "SilentlyContinue"
diff --git a/global.json b/global.json
index eba056a1..b207f0ea 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "8.0.201",
+ "version": "9.0.100-preview.1.24101.2",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
diff --git a/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj b/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj
index f3aabe15..9d7cfe66 100644
--- a/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj
+++ b/tests/Logging.XUnit.Tests/MartinCostello.Logging.XUnit.Tests.csproj
@@ -7,7 +7,7 @@
true
MartinCostello.Logging.XUnit
$(Description)
- net8.0
+ net9.0
diff --git a/tests/SampleApp/SampleApp.csproj b/tests/SampleApp/SampleApp.csproj
index fe4c341b..d1406cd9 100644
--- a/tests/SampleApp/SampleApp.csproj
+++ b/tests/SampleApp/SampleApp.csproj
@@ -2,6 +2,6 @@
false
$(NoWarn);CA1801;CA1822;CA1861;SA1600;SA1601
- net8.0
+ net9.0