diff --git a/Directory.Packages.props b/Directory.Packages.props index c538867..c737d14 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -2,9 +2,9 @@ - + - + diff --git a/README.md b/README.md index e5306ed..cfa7762 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This project is licensed under the [Apache 2.0](http://www.apache.org/licenses/L ## Building and Testing -Compiling the application 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 application 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 application locally from a terminal/command-line, run the following set of commands: diff --git a/build.ps1 b/build.ps1 index 4691262..f6e8bd6 100755 --- a/build.ps1 +++ b/build.ps1 @@ -12,10 +12,6 @@ param( $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = "true" $env:NUGET_XMLDOC_MODE = "skip" -if ($null -eq $env:MSBUILDTERMINALLOGGER) { - $env:MSBUILDTERMINALLOGGER = "auto" -} - $Configuration = "Release" $ErrorActionPreference = "Stop" $ProgressPreference = "SilentlyContinue" diff --git a/global.json b/global.json index 0f17001..b207f0e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.302", + "version": "9.0.100-preview.1.24101.2", "allowPrerelease": false, "rollForward": "latestMajor" } diff --git a/src/TodoApp/TodoApp.csproj b/src/TodoApp/TodoApp.csproj index cb39985..409e57d 100644 --- a/src/TodoApp/TodoApp.csproj +++ b/src/TodoApp/TodoApp.csproj @@ -4,7 +4,7 @@ true false TodoApp - net8.0 + net9.0 de-DE;en-GB;en-US;es-ES;fr-FR;ja-JP;qps-Ploc diff --git a/tests/TodoApp.Tests/TodoApp.Tests.csproj b/tests/TodoApp.Tests/TodoApp.Tests.csproj index 7a6d69d..82e7ca3 100644 --- a/tests/TodoApp.Tests/TodoApp.Tests.csproj +++ b/tests/TodoApp.Tests/TodoApp.Tests.csproj @@ -2,7 +2,7 @@ false TodoApp - net8.0 + net9.0