From 6cfbbe15174646ffa6aa0133ba417a08ff431db2 Mon Sep 17 00:00:00 2001 From: martincostello Date: Tue, 13 Feb 2024 21:44:37 +0000 Subject: [PATCH] Update to ASP.NET Core 9 preview 1 Update to preview 1 of ASP.NET Core 9. --- Directory.Packages.props | 4 ++-- README.md | 2 +- build.ps1 | 4 ---- global.json | 2 +- src/TodoApp/TodoApp.csproj | 2 +- tests/TodoApp.Tests/TodoApp.Tests.csproj | 2 +- 6 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 42ef42d..70452a1 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 7c4a019..b207f0e 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/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