Skip to content

Commit b2c0768

Browse files
docs: update .NET SDK prerequisite from 8 to 9
The project targets net9.0 and CI uses dotnet 9.0.x. Update prerequisites and example csproj to match. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 7983633 commit b2c0768

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
2222

2323
## Prerequisites
2424

25-
- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)
25+
- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
2626
- Windows App SDK 2.0 — restored automatically from NuGet, no manual install required
2727
- Visual Studio 2022 (17.8+) or VS Code with C# Dev Kit
2828

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ If you're building line-of-business applications:
133133

134134
### Prerequisites
135135

136-
- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0)
136+
- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
137137
- Windows App SDK 2.0 — pulled automatically on `dotnet restore`
138-
- Visual Studio 2022 (17.8+) or just the .NET 8 CLI
138+
- Visual Studio 2022 (17.8+) or just the .NET 9 CLI
139139

140140
> This project uses Windows App SDK 2.0 (`Microsoft.WindowsAppSDK` 2.0.1). The package comes from NuGet — no manual SDK installer is needed.
141141
@@ -151,7 +151,7 @@ Or create a `.csproj` manually:
151151
<Project Sdk="Microsoft.NET.Sdk">
152152
<PropertyGroup>
153153
<OutputType>WinExe</OutputType>
154-
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
154+
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
155155
<UseWinUI>true</UseWinUI>
156156
<WindowsPackageType>None</WindowsPackageType>
157157
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>

0 commit comments

Comments
 (0)