From 0c36cc48378b2a29bd18a10c2f34852250159f31 Mon Sep 17 00:00:00 2001 From: Qiutong Shen Date: Mon, 9 Mar 2026 10:55:50 +0800 Subject: [PATCH 1/2] Fix typos, broken links, and formatting issues across docs for apps --- hub/apps/desktop/index.yml | 4 ++-- hub/apps/get-started/best-practices.md | 4 ++-- hub/apps/tutorials/winui-notes/note.md | 2 +- hub/apps/tutorials/winui-notes/project.md | 2 +- hub/apps/tutorials/winui-notes/view-model.md | 4 ++-- hub/apps/windows-app-sdk/downloads-archive.md | 22 +++++++++---------- .../project-reunion-0-5-preview.md | 2 +- .../release-notes/windows-app-sdk-0-8.md | 6 ++--- .../release-notes/windows-app-sdk-1-1.md | 2 +- .../release-notes/windows-app-sdk-1-6.md | 9 ++++---- .../release-notes/windows-app-sdk-1-8.md | 6 ++--- .../release-notes/windows-app-sdk-2-0.md | 2 +- hub/apps/windows-sdk/downloads.md | 2 +- 13 files changed, 33 insertions(+), 34 deletions(-) diff --git a/hub/apps/desktop/index.yml b/hub/apps/desktop/index.yml index f084c1e54a..3ebf0c9a95 100644 --- a/hub/apps/desktop/index.yml +++ b/hub/apps/desktop/index.yml @@ -24,7 +24,7 @@ landingContent: url: ../get-started/start-here.md - text: An overview of UI frameworks url: ../get-started/index.md - - text: Window App SDK + - text: Windows App SDK url: ../windows-app-sdk/index.md - title: Design and UI @@ -115,7 +115,7 @@ landingContent: url: /answers/questions/ - text: "@WindowsDocs" url: https://twitter.com/WindowsDocs - - text: OneDevMinute on YouTube + - text: OneDevMinute on Microsoft Learn url: /shows/One-Dev-Minute/?WT.mc_id=odm-c9-niner - text: Windows developer support url: https://developer.microsoft.com/windows/support diff --git a/hub/apps/get-started/best-practices.md b/hub/apps/get-started/best-practices.md index 0942b4113a..847a4674bc 100644 --- a/hub/apps/get-started/best-practices.md +++ b/hub/apps/get-started/best-practices.md @@ -136,7 +136,7 @@ For Windows 11, we improved the behavior of the Share dialog in several ways. - Discoverability settings for nearby sharing are now at the top of the dialog and more settings are available at the bottom. - All apps can now participate in the Share dialog as targets, including unpackaged desktop apps and PWAs that are installed through Microsoft Edge. - - A previously unpackaged desktop app can participate as a target in the Share dialog if you package it with external location (see [Grant package identity by packaging with external location](../desktop/modernize/grant-identity-to-nonpackaged-apps.md)). For sample code that demonstrates how to do that, see the [SparsePackages](https://github.com/microsoft/AppModelSamples/tree/master/Samples/SparsePackages) sample app. + - A previously unpackaged desktop app can participate as a target in the Share dialog if you package it with external location (see [Grant package identity by packaging with external location](../desktop/modernize/grant-identity-to-nonpackaged-apps.md)). For sample code that demonstrates how to do that, see the [PackageWithExternalLocation](https://github.com/microsoft/AppModelSamples/tree/master/Samples/PackageWithExternalLocation) sample app. - A PWA can participate in the Share dialog if it implements the [Web Share Target API](/microsoft-edge/progressive-web-apps-chromium/webappmanifests#identify-your-app-as-a-share-target). ![An image of the Share dialog in Windows 11](images/great-apps/share-target.png) @@ -324,7 +324,7 @@ In fact, the [World Health Organization](https://www.who.int/news-room/fact-shee > > **Accessibility is an opportunity** > -> According to the [Microsoft Accessibility Approach Datasheet](https://query.prod.cms.rt.microsoft.com/cms/api/am/binary/RE4wNu4): Inclusive organizations that embrace best practices for employing and supporting persons with disabilities in the workplace outperform their peers and do better at attracting and keeping top talent. Millennials, who are 75% of the global workforce, typically choose employers who reflect their values. Diversity and inclusion top that list. +> Inclusive organizations that embrace best practices for employing and supporting persons with disabilities in the workplace outperform their peers and do better at attracting and keeping top talent. Millennials, who are 75% of the global workforce, typically choose employers who reflect their values. Diversity and inclusion top that list. ### Incorporating accessibility diff --git a/hub/apps/tutorials/winui-notes/note.md b/hub/apps/tutorials/winui-notes/note.md index baf5c9a3d8..e53b395e5f 100644 --- a/hub/apps/tutorials/winui-notes/note.md +++ b/hub/apps/tutorials/winui-notes/note.md @@ -161,7 +161,7 @@ Now you're going to add code to the **NotePage.xaml.cs** code-behind file to han ### Add event handlers -Next, add the [Click](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.primitives.buttonbase.click) event handlers for the for the **Save** and **Delete** buttons. Adding event handlers is something that you'll do often while creating your apps, so Visual Studio provides several features to make it easier. +Next, add the [Click](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.primitives.buttonbase.click) event handlers for the **Save** and **Delete** buttons. Adding event handlers is something that you'll do often while creating your apps, so Visual Studio provides several features to make it easier. 1. In the **NotePage.xaml** file, place your cursor after the `Content` attribute in the **Save** `Button` control. Type `Click=`. At this point, Visual Studio should pop up an auto-complete UI that looks like this: diff --git a/hub/apps/tutorials/winui-notes/project.md b/hub/apps/tutorials/winui-notes/project.md index 797f8b72db..0ec7c76893 100644 --- a/hub/apps/tutorials/winui-notes/project.md +++ b/hub/apps/tutorials/winui-notes/project.md @@ -89,7 +89,7 @@ You'll also add a [Frame](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.c ``` -1. Save the file by pressing CTRL + S, clicking the Save icon in the tool bar, or by selecting the menu **File** > **Save MainPage.xaml**. +1. Save the file by pressing CTRL + S, clicking the Save icon in the tool bar, or by selecting the menu **File** > **Save MainWindow.xaml**. Don't worry if you don't understand what all this XAML markup does right now. As you build the rest of the app UI, we'll explain XAML concepts in more detail. diff --git a/hub/apps/tutorials/winui-notes/view-model.md b/hub/apps/tutorials/winui-notes/view-model.md index bda0446b68..86893aabe2 100644 --- a/hub/apps/tutorials/winui-notes/view-model.md +++ b/hub/apps/tutorials/winui-notes/view-model.md @@ -11,7 +11,7 @@ no-loc: ["NotePage.xaml", "NotePage.xaml.cs", "Note.cs", "AllNotesPage", "WinUIN This portion of the tutorial introduces the concepts of data views and models. -In the previous steps of the tutorial, you added a new page to the project that lets the user save, edit, or delete a single note. However, because the app needs to handle more than one note, you need to add another page that displays all the notes (call it `AllNotesPage`). This page let's the user choose a note to open in the editor page so they can view, edit, or delete it. It should also let the user create a new note. +In the previous steps of the tutorial, you added a new page to the project that lets the user save, edit, or delete a single note. However, because the app needs to handle more than one note, you need to add another page that displays all the notes (call it `AllNotesPage`). This page lets the user choose a note to open in the editor page so they can view, edit, or delete it. It should also let the user create a new note. To accomplish this, `AllNotesPage` needs to have a collection of notes, and a way to display the collection. This is where the app runs into trouble because the note data is tightly bound to the `NotePage` file. In `AllNotesPage`, you just want to display all the notes in a list or other collection view, with information about each note, like the date it was created and a preview of the text. With the note text being tightly bound to the `TextBox` control, there's no way to do this. @@ -231,7 +231,7 @@ Now you can update the XAML file to use the `Note` model. Previously, you read t 1. Add a `Text` attribute to the `TextBox` control. Bind it to the `Text` property of `noteModel`: `Text="{x:Bind noteModel.Text, Mode=TwoWay}"`. 1. Update the `Header` to bind to the `Date` property of `noteModel`: `Header="{x:Bind noteModel.Date.ToString()}"`. - ```csharp + ```xaml Text="{x:Bind noteModel.Text, Mode=TwoWay}" diff --git a/hub/apps/windows-app-sdk/downloads-archive.md b/hub/apps/windows-app-sdk/downloads-archive.md index 36d3849cfd..da936330a8 100644 --- a/hub/apps/windows-app-sdk/downloads-archive.md +++ b/hub/apps/windows-app-sdk/downloads-archive.md @@ -227,12 +227,12 @@ None at present. | Version | SDK downloads | Runtime downloads | |---|---|---| -| **Version 1.0.4**
06/14/2022
[Release notes](release-notes-archive/stable-channel-1.0.md#version-104) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cpp) | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeredist-1.0.4.zip) | -| **1.0.3**
04/18/2022
[Release notes](release-notes-archive/stable-channel-1.0.md#version-103) | No new Visual Studio extensions. | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeredist-1.0.3.zip) | -| **1.0.2**
04/05/2022
[Release notes](release-notes-archive/stable-channel-1.0.md#version-102) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeredist-1.0.2.zip) | -| **1.0.1**
03/15/2022
[Release notes](release-notes-archive/stable-channel-1.0.md#version-101) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeredist-1.0.1.zip) | -| **1.0.0**
11/16/2021
[Release notes](release-notes-archive/stable-channel-1.0.md#version-10) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cpp)
C# Visual Studio 2019 extension (no longer available)
C++ Visual Studio 2019 extension(no longer available)| [Redistributable](https://aka.ms/windowsappsdk/1.0-stable/msix-installer) | -| **0.8**
06/24/2021
[Release notes](release-notes-archive/stable-channel-0.8.md#version-08) | Visual Studio extension(no longer available) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0) | +| **Version 1.0.4**
06/14/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-104) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cpp) | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeredist-1.0.4.zip) | +| **1.0.3**
04/18/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-103) | No new Visual Studio extensions. | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeredist-1.0.3.zip) | +| **1.0.2**
04/05/2022
[Release notes](release-notes/windows-app-sdk-1-0?pivots=stable#version-102) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeredist-1.0.2.zip) | +| **1.0.1**
03/15/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-101) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeredist-1.0.1.zip) | +| **1.0.0**
11/16/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-10) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cpp)
C# Visual Studio 2019 extension (no longer available)
C++ Visual Studio 2019 extension(no longer available)| [Redistributable](https://aka.ms/windowsappsdk/1.0-stable/msix-installer) | +| **0.8**
06/24/2021
[Release notes](./release-notes/windows-app-sdk-0-8?pivots=stable) | Visual Studio extension(no longer available) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0) | | **0.5**
03/29/2021 ||| | 0.1
12/11/2020 ||| @@ -240,13 +240,13 @@ None at present. | Version | SDK downloads | Runtime downloads | |---|---|---| -| **Version 1.0 Preview 3 (1.0.0-preview3)**
10/27/2021
[Release notes](release-notes-archive/preview-channel-1.0.md#version-10-preview-3-100-preview3) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/csharp)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/csharp)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/cpp)| [Redistributable](https://aka.ms/windowsappsdk/1.0-preview3/msix-installer) | -|**1.0 Preview 2**
10/5/2021
[Release notes](release-notes-archive/preview-channel-1.0.md#version-10-preview-2-100-preview2) ||| -|**1.0 Preview 1**
09/17/2021
[Release notes](release-notes-archive/preview-channel-1.0.md#version-10-preview-1-100-preview1) ||| +| **Version 1.0 Preview 3 (1.0.0-preview3)**
10/27/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-3-100-preview3) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/csharp)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/csharp)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/cpp)| [Redistributable](https://aka.ms/windowsappsdk/1.0-preview3/msix-installer) | +|**1.0 Preview 2**
10/5/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-2-100-preview2) ||| +|**1.0 Preview 1**
09/17/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-1-100-preview1) ||| ## Out-of-support experimental releases | Version | SDK downloads | Runtime downloads | |---|---|---| -| **1.0.0 Experimental**
08/09/2021
[Release notes](release-notes-archive/experimental-channel-1.0.md#version-10-experimental-100-experimental1) || [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/1.0.0-experimental1) | -| **0.8 Experimental**
05/27/2021
[Release notes](release-notes-archive/experimental-channel-0.8.md#version-08-preview-080-preview) | [Visual Studio extension](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0-rc) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8-preview) | +| **1.0.0 Experimental**
08/09/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=experimental#version-10-experimental-100-experimental1) || [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/1.0.0-experimental1) | +| **0.8 Experimental**
05/27/2021
[Release notes](./release-notes/windows-app-sdk-0-8?pivots=experimental) | [Visual Studio extension](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0-rc) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8-preview) | diff --git a/hub/apps/windows-app-sdk/release-notes/project-reunion-0-5-preview.md b/hub/apps/windows-app-sdk/release-notes/project-reunion-0-5-preview.md index 5626d0bf5e..df0d7d0ba4 100644 --- a/hub/apps/windows-app-sdk/release-notes/project-reunion-0-5-preview.md +++ b/hub/apps/windows-app-sdk/release-notes/project-reunion-0-5-preview.md @@ -215,7 +215,7 @@ For more information on affected APIs as well as workarounds and replacements fo - `INotifyCollectionChanged` - `ICommand` - The `System` namespace versions still exist, but cannot be used with WinUI 3. This means that `ObservableCollection` doesn't work as-is in WinUI 3 C# UWP apps. For a workaround, see the [CollectionsInterop sample](https://github.com/microsoft/Xaml-Controls-Gallery/blob/winui3preview/XamlControlsGallery/CollectionsInterop.cs) in the [XAML Controls Gallery sample](https://github.com/microsoft/Xaml-Controls-Gallery/tree/winui3preview). + The `System` namespace versions still exist, but cannot be used with WinUI 3. This means that `ObservableCollection` doesn't work as-is in WinUI 3 C# UWP apps. For a workaround, see the [CollectionsInterop sample](https://github.com/microsoft/WinUI-Gallery/blob/main/WinUIGallery/CollectionsInterop.cs) in the [XAML Controls Gallery sample](https://github.com/microsoft/WinUI-Gallery). ## XAML Controls Gallery (WinUI 3 Preview branch) diff --git a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-0-8.md b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-0-8.md index e44ff230b1..dd97649b8f 100644 --- a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-0-8.md +++ b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-0-8.md @@ -53,8 +53,8 @@ This is a servicing release of the Windows App SDK that includes critical bug fi This is a servicing release of the Windows App SDK that includes critical bug fixes for the 0.8.0 release. -[!NOTE] -For C# developers, one of the following .NET SDK versions (or later) is required: 6.0.202, 6.0.104, 5.0.407, 5.0.213. To update your .NET SDK version, visit [.NET Downloads](https://dotnet.microsoft.com/download) or update to the latest version of Visual Studio. Without the required .NET SDK version, when updating your NuGet package you will see an error like: *"This version of WindowsAppSDK requires WinRT.Runtime.dll version 1.6 or greater."*. +> [!NOTE] +> For C# developers, one of the following .NET SDK versions (or later) is required: 6.0.202, 6.0.104, 5.0.407, 5.0.213. To update your .NET SDK version, visit [.NET Downloads](https://dotnet.microsoft.com/download) or update to the latest version of Visual Studio. Without the required .NET SDK version, when updating your NuGet package you will see an error like: *"This version of WindowsAppSDK requires WinRT.Runtime.dll version 1.6 or greater."*.
Bug fixes @@ -79,7 +79,7 @@ This is a servicing release of the Windows App SDK that includes several perform net8.0-windows10.0.19041.0 10.0.17763.0 10.0.19041.24 - + ... ``` diff --git a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-1.md b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-1.md index 50081a38a3..954eef51ea 100644 --- a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-1.md +++ b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-1.md @@ -105,7 +105,7 @@ zone_pivot_groups: wasdk-release-channels > **New features:** > > - Mica and Background Acrylic are now available for WinUI applications. -> - For more information about these materials, check out [Materials in Windows 11](../../design/signature-experiences/materials.md). Check out our sample code for applying Mica in C++ applications at [Apply Mica or Acrylic materials in desktop apps for Windows 11](../../windows-app-sdk/system-backdrop-controller.md) and in C# applications [on GitHub](https://github.com/microsoft/WinUI-Gallery/tree/main/WinUIGallery/ControlPagesSampleCode/SystemBackdrops) as part of the [WinUI 3 Gallery](https://apps.microsoft.com/detail/9P3JFPWWDZRC). +> - For more information about these materials, check out [Materials in Windows 11](../../design/signature-experiences/materials.md). Check out our sample code for applying Mica in C++ applications at [Apply Mica or Acrylic materials in desktop apps for Windows 11](../../windows-app-sdk/system-backdrop-controller.md) and in C# applications [on GitHub](https://github.com/microsoft/WinUI-Gallery/tree/winappsdk/1.1/WinUIGallery/ControlPagesSampleCode/SystemBackdrops) as part of the [WinUI 3 Gallery](https://apps.microsoft.com/detail/9P3JFPWWDZRC). > - First introduced in 1.0.1, we have stabilized and enabled the creation of **multiple windows on the same thread** in WinUI applications. See [issue 5918](https://github.com/microsoft/microsoft-ui-xaml/issues/5918) for more information. > > **Fixed bugs:** diff --git a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-6.md b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-6.md index 8408d876dd..1c72a3fdab 100644 --- a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-6.md +++ b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-6.md @@ -185,7 +185,7 @@ Microsoft.Windows.Widgets.Providers > net8.0-windows10.0.22621.0 > 10.0.17763.0 > 10.0.22621.38 -> +> > ... > ``` > @@ -537,7 +537,7 @@ For the updated runtime and MSIX, see [Downloads for the Windows App SDK](../../ > - Fixed an issue where debugger symbols weren't working correctly for some binaries. For more info, see GitHub issue [#4633](https://github.com/microsoft/windowsappsdk/issues/4633). > - Fixed a build break when using `/permissive-`. For more info, see GitHub issue [#4643](https://github.com/microsoft/windowsappsdk/issues/4643). > - Fixed a couple of API breaking changes in 1.6-preview1 caused by renamed parameters. For more info, see GitHub issue [#4645](https://github.com/microsoft/windowsappsdk/issues/4645). -> - Fixed type conflict build breaks hit by some projects in 1.6-preview1, particularly with `Windows.UI.Text` types. For more info, see GitHub issue [#4646](https://github.com/microsoft/windowsappsdk/issues/4646). +> - Fixed type conflict build breaks hit by some projects in 1.6-preview1, particularly with `Windows.UI.Text` types. > - Fixed an issue with resource lookups by control libraries in 1.6-preview1. For more info, see GitHub issue [#4649](https://github.com/microsoft/windowsappsdk/issues/4649). > - Fixed a potential crash when subclassing `NavigationView`. > - Fixed an issue where table borders in a `RichEditBox` would not correctly erase when scrolling or reducing the size of the table. @@ -557,7 +557,6 @@ For the updated runtime and MSIX, see [Downloads for the Windows App SDK](../../ > The new TitleBar control we released in 1.6-experimental1 is not yet available in non-experimental builds of 1.6 to allow more time to evaluate and respond to community feedback. We received a lot of great input here and want to make sure we take the time needed to address it. > -
Required C# project changes for 1.6-preview1 @@ -572,7 +571,7 @@ For the updated runtime and MSIX, see [Downloads for the Windows App SDK](../../ > net8.0-windows10.0.22621.0 > 10.0.17763.0 > 10.0.22621.38 -> +> > ... > ``` > @@ -1268,7 +1267,7 @@ To download, retarget your Windows App SDK NuGet version to `1.6.240531000-exper > net8.0-windows10.0.22621.0 > 10.0.17763.0 > 10.0.22621.35-preview -> +> > ... > ``` > diff --git a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-8.md b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-8.md index 213e78c0f1..2d6b20b48d 100644 --- a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-8.md +++ b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-1-8.md @@ -31,7 +31,7 @@ Released: **February 10, 2026**

> > * Fixed a package downgrade init failure and added 1.8.5 runtime support—ensuring reliable deployment and correct app recognition across configurations. ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): DeploymentManager_PackageDowngradeFix). -> * Fixed an issue where `CompositionIsland.StateChanged` event handlers were not triggered when the user modified the size of a window by dragging it to the top of the screen or using the edges of the screen and the window has a non-default `TitleBar` with an `IconSource` set. Closing #[#10374](https://github.com/microsoft/microsoft-ui-xaml/issues/10374) ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): InputNonClientPointerSource_PropagateWindowPosChangedMessage). +> * Fixed an issue where `CompositionIsland.StateChanged` event handlers were not triggered when the user modified the size of a window by dragging it to the top of the screen or using the edges of the screen and the window has a non-default `TitleBar` with an `IconSource` set. Closing [#10374](https://github.com/microsoft/microsoft-ui-xaml/issues/10374) ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): InputNonClientPointerSource_PropagateWindowPosChangedMessage). > * Fixed a crash during app shutdown for certain custom input handling scenarios inside of a ScrollViewer. ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): DwmCoreI_ShutdownManipulationCrash). > * Improved diagnosability for Windows AI model initialization and Text Intelligence APIs. ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): ModelInitialization_Insights). > * Fixed an issue in the Windows AI API `GetReadyState` which erroneously returns `AIFeatureReadyState::NotReady` on unsupported Windows OS versions. The API now returns `AIFeatureReadyState::NotSupportedOnCurrentSystem` ([RuntimeCompatibilityChange](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.windowsappruntime.runtimecompatibilityoptions.disabledchanges): ModelInitialization_KnownExceptions). @@ -142,7 +142,7 @@ Released: **October 14, 2025**

> > **Key enhancements include:** > * Python bindings for `OrtMemoryInfoDeviceType`, `OrtDeviceMemoryType`, and expanded `OrtDevice` to expose the memory type via a new `mem_type` method. The `OrtMemoryInfo` Python class now supports both legacy and new V2 constructors and exposes additional properties such as device memory type and Vendor ID. -> * Extended the Python `InferenceSession` object to provide access to imput/output `OrtMemoryInfo` and `OrtEpDevice` objects through new properties and methods +> * Extended the Python `InferenceSession` object to provide access to input/output `OrtMemoryInfo` and `OrtEpDevice` objects through new properties and methods > * Introduced Python bindings for `OrtSyncStream`, including creation via `OrtEpDevice.create_sync_stream()` and retrieval of device-specific `OrtMemoryInfo` via `OrtEpDevice.memory_info()`. > * Refactored the C++ API to generalize `SyncStream` handling, allowing for unowned streams and improved type safety. > * Added a new Python-level `copy_tensors` function and corresponding C++ binding, enabling efficient copying of tensor data between OrtValue objects, optionally using a synchronization stream. @@ -271,7 +271,7 @@ Released: **September 9, 2025**

>
-
indows AI Object Erase +
Windows AI Object Erase > > Object Erase can be used to remove objects from images. The model takes both an image and a greyscale mask indicating the object to be removed, erases the masked area from the image, and replaces the erased area with the image background. diff --git a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-2-0.md b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-2-0.md index 063afc5aec..b3f47fcc3c 100644 --- a/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-2-0.md +++ b/hub/apps/windows-app-sdk/release-notes/windows-app-sdk-2-0.md @@ -58,7 +58,7 @@ Released: **February 13, 2026**

> * GetContentIndexingStatus -> GetContentItemStatus > * GetMultipleContentIndexingStatus -> GetContentItemStatuses > * GetContentItems -> * AppCOntentIndexListener +> * AppContentIndexListener > * IndexingStatusChanged -> ContentItemStatusChanged > * AppIndexTextQuerySession > * UpdateQuery -> UpdateQueryPhrase diff --git a/hub/apps/windows-sdk/downloads.md b/hub/apps/windows-sdk/downloads.md index 314bba598f..615103e163 100644 --- a/hub/apps/windows-sdk/downloads.md +++ b/hub/apps/windows-sdk/downloads.md @@ -23,7 +23,7 @@ For older versions, see the [Windows SDK download archive](downloads-archive.md) | **Windows SDK for Windows 11 (10.0.26100.7175)**
November 2025
[Release notes](./release-notes.md#build-100261007175) | [Installer](//go.microsoft.com/fwlink/?linkid=2342616)
[ISO](//go.microsoft.com/fwlink/?linkid=2342518) | | **Windows SDK for Windows 11 26H1 for OEMs and Partners (10.0.28000.1)**
November 2025 | [Installer](//go.microsoft.com/fwlink/?linkid=2342535)
[ISO](//go.microsoft.com/fwlink/?linkid=2343616) | | **Windows SDK for Windows 11 (10.0.26100.6901)**
October 2025
[Release notes](./release-notes.md#build-100261006901) | [Installer](//go.microsoft.com/fwlink/?linkid=2338977)
[ISO](//go.microsoft.com/fwlink/?linkid=2338787) | -| **Windows SDK for Windows 11 (10.0.26100.6584)**
September 2025
[Release notes](./release-notes.md#build-100261006584) | [Installer](//go.microsoft.com/fwlink/?linkid=2335755)
[ISO](//go.microsoft.com/fwlink/?linkid=233566) | +| **Windows SDK for Windows 11 (10.0.26100.6584)**
September 2025
[Release notes](./release-notes.md#build-100261006584) | [Installer](//go.microsoft.com/fwlink/?linkid=2335755)
[ISO](//go.microsoft.com/fwlink/?linkid=2335668) | | **Windows SDK for Windows 11 (10.0.26100.4948)**
August 2025
[Release notes](./release-notes.md#build-100261004948) | [Installer](//go.microsoft.com/fwlink/?linkid=2332022)
[ISO](//go.microsoft.com/fwlink/?linkid=2332023) | | **Windows SDK for Windows 11 (10.0.26100.4654)**
July 2025
[Release notes](./release-notes.md#build-100261004654) | [Installer](//go.microsoft.com/fwlink/?linkid=2327008)
[ISO](//go.microsoft.com/fwlink/?linkid=2326092) | | **Windows SDK for Windows 11 (10.0.26100.4188)**
May 2025
[Release notes](./release-notes.md#build-100261004188) | [Installer](//go.microsoft.com/fwlink/?linkid=2320455)
[ISO](//go.microsoft.com/fwlink/?linkid=2320054) | From 0c6f4a82b6ed73b2e682d9259462711ab19f07b9 Mon Sep 17 00:00:00 2001 From: Qiutong Shen Date: Mon, 9 Mar 2026 11:25:31 +0800 Subject: [PATCH 2/2] update achive page broken links --- hub/apps/windows-app-sdk/downloads-archive.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/hub/apps/windows-app-sdk/downloads-archive.md b/hub/apps/windows-app-sdk/downloads-archive.md index da936330a8..52bad7e005 100644 --- a/hub/apps/windows-app-sdk/downloads-archive.md +++ b/hub/apps/windows-app-sdk/downloads-archive.md @@ -227,12 +227,12 @@ None at present. | Version | SDK downloads | Runtime downloads | |---|---|---| -| **Version 1.0.4**
06/14/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-104) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cpp) | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeredist-1.0.4.zip) | -| **1.0.3**
04/18/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-103) | No new Visual Studio extensions. | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeredist-1.0.3.zip) | -| **1.0.2**
04/05/2022
[Release notes](release-notes/windows-app-sdk-1-0?pivots=stable#version-102) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeredist-1.0.2.zip) | -| **1.0.1**
03/15/2022
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-101) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeredist-1.0.1.zip) | -| **1.0.0**
11/16/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=stable#version-10) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cpp)
C# Visual Studio 2019 extension (no longer available)
C++ Visual Studio 2019 extension(no longer available)| [Redistributable](https://aka.ms/windowsappsdk/1.0-stable/msix-installer) | -| **0.8**
06/24/2021
[Release notes](./release-notes/windows-app-sdk-0-8?pivots=stable) | Visual Studio extension(no longer available) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0) | +| **Version 1.0.4**
06/14/2022
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-104) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.4/vsix-2019-cpp) | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeinstall-1.0.4-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.4/windowsappruntimeredist-1.0.4.zip) | +| **1.0.3**
04/18/2022
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-103) | No new Visual Studio extensions. | [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeinstall-1.0.3-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.3/windowsappruntimeredist-1.0.3.zip) | +| **1.0.2**
04/05/2022
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-102) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.2/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeinstall-1.0.2-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.2/windowsappruntimeredist-1.0.2.zip) | +| **1.0.1**
03/15/2022
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-101) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2022-cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cs)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0/1.0.1/vsix-2019-cpp)| [Installer (x64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x64.exe)
[Installer (x86)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-x86.exe)
[Installer (arm64)](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeinstall-1.0.1-arm64.exe)
[Redistributable](https://aka.ms/windowsappsdk/1.0/1.0.1/windowsappruntimeredist-1.0.1.zip) | +| **1.0.0**
11/16/2021
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-10) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cs)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/stable-vsix-2022-cpp)
C# Visual Studio 2019 extension (no longer available)
C++ Visual Studio 2019 extension(no longer available)| [Redistributable](https://aka.ms/windowsappsdk/1.0-stable/msix-installer) | +| **0.8**
06/24/2021
[Release notes](./release-notes/windows-app-sdk-0-8.md#version-080-stable) | Visual Studio extension(no longer available) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0) | | **0.5**
03/29/2021 ||| | 0.1
12/11/2020 ||| @@ -240,13 +240,13 @@ None at present. | Version | SDK downloads | Runtime downloads | |---|---|---| -| **Version 1.0 Preview 3 (1.0.0-preview3)**
10/27/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-3-100-preview3) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/csharp)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/csharp)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/cpp)| [Redistributable](https://aka.ms/windowsappsdk/1.0-preview3/msix-installer) | -|**1.0 Preview 2**
10/5/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-2-100-preview2) ||| -|**1.0 Preview 1**
09/17/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=preview#version-10-preview-1-100-preview1) ||| +| **Version 1.0 Preview 3 (1.0.0-preview3)**
10/27/2021
[Release notes](./release-notes/windows-app-sdk-1-0.md#winui-3-100-preview3) | [C# Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/csharp)
[C++ Visual Studio 2022 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2022/cpp)
[C# Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/csharp)
[C++ Visual Studio 2019 extension](https://aka.ms/windowsappsdk/1.0-preview3/extension/VS2019/cpp)| [Redistributable](https://aka.ms/windowsappsdk/1.0-preview3/msix-installer) | +|**1.0 Preview 2**
10/5/2021
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-10-preview-2-100-preview2) ||| +|**1.0 Preview 1**
09/17/2021
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-10-preview-2-100-preview2) ||| ## Out-of-support experimental releases | Version | SDK downloads | Runtime downloads | |---|---|---| -| **1.0.0 Experimental**
08/09/2021
[Release notes](./release-notes/windows-app-sdk-1-0?pivots=experimental#version-10-experimental-100-experimental1) || [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/1.0.0-experimental1) | -| **0.8 Experimental**
05/27/2021
[Release notes](./release-notes/windows-app-sdk-0-8?pivots=experimental) | [Visual Studio extension](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0-rc) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8-preview) | +| **1.0.0 Experimental**
08/09/2021
[Release notes](./release-notes/windows-app-sdk-1-0.md#version-10-experimental-100-experimental1) || [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/1.0.0-experimental1) | +| **0.8 Experimental**
05/27/2021
[Release notes](./release-notes/windows-app-sdk-0-8.md#version-08-preview-080-preview) | [Visual Studio extension](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8.0-rc) | [Redistributable](https://github.com/microsoft/WindowsAppSDK/releases/tag/v0.8-preview) | \ No newline at end of file