Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v145</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '17.0'">v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
Expand All @@ -49,7 +50,8 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v145</PlatformToolset>
<PlatformToolset Condition="'$(VisualStudioVersion)' == '17.0'">v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ This repository hosts samples for the [Windows App SDK](https://github.com/micro
- [Restart](Samples/AppLifecycle/Restart): These samples demonstrate synchronously restarting an app with command-line restart arguments.
- [Share Target](Samples\AppLifecycle\ShareTarget\WinUI-CS-ShareTargetSampleApp): This sample demonstrates an app that can be activated as a share target.

#### Background Task
- [Background Task](Samples/BackgroundTask): These samples demonstrates usage of Background Task feature in WinAppSDK apps leveraging the WinAppSDK Background Task API.

#### Data and Files
- [Resource Management](Samples/ResourceManagement): These samples demonstrates app resource management using the MRT Core APIs.

Expand Down Expand Up @@ -88,7 +85,7 @@ The easiest way to use these samples without Git is to download the ZIP file. Se

## 📄 Samples versioning

The samples will be updated with GA releases of the Windows App SDK. The `main` branch includes the latest samples, which may also include experimental or preview features. Specific release branches are named `release/x.y` and contain samples that reference the corresponding GA version of the Windows App SDK. This repository currently includes the following release branches:
The samples will be updated with GA releases of the Windows App SDK. The `main` branch includes samples for stable Windows App SDK features only. Experimental and preview samples belong in the `release/experimental` branch. Specific stable release branches are named `release/x.y` and contain samples that reference the corresponding GA version of the Windows App SDK. This repository currently includes the following release branches:

- [release/experimental](https://github.com/microsoft/WindowsAppSDK-Samples/tree/release/experimental)
- [release/1.6](https://github.com/microsoft/WindowsAppSDK-Samples/tree/release/1.6-stable)
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Web.WebView2" version="1.0.3719.77" targetFramework="native" />
<package id="Microsoft.Windows.AI.MachineLearning" version="2.1.74" targetFramework="native" />
<package id="Microsoft.Windows.CppWinRT" version="2.0.221104.6" targetFramework="native" />
<package id="Microsoft.Windows.SDK.BuildTools" version="10.0.22621.3233" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK" version="1.5.240227000" targetFramework="native" />
<package id="Microsoft.Windows.SDK.BuildTools" version="10.0.26100.4654" targetFramework="native" />
<package id="Microsoft.Windows.SDK.BuildTools.MSIX" version="1.7.251221100" targetFramework="native" developmentDependency="true" />
<package id="Microsoft.WindowsAppSDK" version="2.4.0" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.AI" version="2.4.4" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.Base" version="2.0.4" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.DWrite" version="2.1.0" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.Foundation" version="2.3.9" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.InteractiveExperiences" version="2.1.6" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.ML" version="2.1.74" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.Runtime" version="2.4.0" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.Search" version="2.4.4" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.Widgets" version="2.0.5" targetFramework="native" />
<package id="Microsoft.WindowsAppSDK.WinUI" version="2.3.6" targetFramework="native" />
</packages>
Loading
Loading