diff --git a/aspnetcore/blazor/hybrid/tutorials/wpf.md b/aspnetcore/blazor/hybrid/tutorials/wpf.md index 933c3c1f13a9..6fd6bf66635d 100644 --- a/aspnetcore/blazor/hybrid/tutorials/wpf.md +++ b/aspnetcore/blazor/hybrid/tutorials/wpf.md @@ -64,6 +64,19 @@ At the top of the project file, change the SDK to `Microsoft.NET.Sdk.Razor`: ``` +:::moniker range=">= aspnetcore-10.0" + +In the project file's existing `` property, add a Windows 10 or later version number: + +```xml +net10.0-windows10.0.17763.0 +``` + +> [!NOTE] +> The preceding guidance on setting the project's target framework version to target Windows 10 or later is a result of switching to the `WebView2CompositionControl` with the release of .NET 10. + +:::moniker-end +