Skip to content

Commit 68fe7c0

Browse files
Fix relative path for background-tasks links in wpf-plus-winappsdk
../../windows-app-sdk/applifecycle/ resolves incorrectly from this file's location. Corrected to ../applifecycle/background-tasks.md. Co-authored-by: Copilot <[email protected]>
1 parent 38d61ee commit 68fe7c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/wpf-plus-winappsdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ For WPF apps that need to execute code when the app isn't running, there are thr
155155

156156
| Approach | Packaging required | Best for |
157157
|---|---|---|
158-
| [Windows App SDK background tasks](../../windows-app-sdk/applifecycle/background-tasks.md) | Yes (MSIX) | Power-efficient system-managed triggers (time, network, push) |
158+
| [Windows App SDK background tasks](../applifecycle/background-tasks.md) | Yes (MSIX) | Power-efficient system-managed triggers (time, network, push) |
159159
| [Task Scheduler](/windows/win32/taskschd/task-scheduler-start-page) | No | Periodic sync, unpackaged apps |
160160
| [.NET Worker Services](/dotnet/core/extensions/workers) | No | Long-running headless workloads, any deployment model |
161161

162-
For Windows App SDK background tasks, your WPF app registers a COM component using `BackgroundTaskBuilder` just like a WinUI 3 app — the `Application.Startup` event in WPF maps to the role that `App.OnLaunched` plays in WinUI 3. See [Using background tasks in Windows apps](../../windows-app-sdk/applifecycle/background-tasks.md) for the full walkthrough.
162+
For Windows App SDK background tasks, your WPF app registers a COM component using `BackgroundTaskBuilder` just like a WinUI 3 app — the `Application.Startup` event in WPF maps to the role that `App.OnLaunched` plays in WinUI 3. See [Using background tasks in Windows apps](../applifecycle/background-tasks.md) for the full walkthrough.
163163

164164
> [!NOTE]
165165
> Windows App SDK background tasks require MSIX packaging. For unpackaged WPF apps, use Task Scheduler or .NET Worker Services instead.

0 commit comments

Comments
 (0)