Skip to content

Commit e9c14ec

Browse files
committed
Fixing incorrect link
1 parent 8b79ac8 commit e9c14ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hub/apps/windows-app-sdk/applifecycle/background-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Use the following best practices when implementing **IBackgroundTask**.
200200
* If the background task will perform asynchronous operations, get a **deferral** object by calling [GetDeferral](/uwp/api/windows.applicationmodel.background.ibackgroundtaskinstance.getdeferral) on the **ITaskInstance** object passed into **Run**. This prevents the background task host, `backgroundtaskhost.exe`, from terminating prematurely before the operations are complete. Release the deferral once all of the asynchronous tasks have completed.
201201
* Keep tasks as lightweight as possible. Long-running tasks may be terminated by the system and are not recommended.
202202
* Use logging to capture execution details for troubleshooting.
203-
* For more best practices for implementing background tasks, see [Guidelines for background tasks](/uwp/launch-resume/guidelines-for-background-tasks).
203+
* For more best practices for implementing background tasks, see [Guidelines for background tasks](/windows/uwp/launch-resume/guidelines-for-background-tasks).
204204

205205

206206
## Declare the background task app extension in the App Manifest

0 commit comments

Comments
 (0)