Skip to content

Commit 1f340fa

Browse files
authored
LinkFix: windows-dev-docs-pr (2023-03) (#3453)
1 parent c720553 commit 1f340fa

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

hub/apps/get-started/windows-developer-glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Often referred to as “app model”. The combination of deployment, isolation,
2525
Describes the way in which your app is packaged before being deployed and installed by users. An app can be packaged, unpackaged, or packaged with external location (see the [Windows developer FAQ](/windows/apps/get-started/windows-developer-faq#what-s-the-difference-between-apps-that-are-packaged--unpackaged--and-packaged-with-external-location)).
2626

2727
#### Bootstrapper
28-
A redistributable component providing an API to find and load the Windows App SDK framework package for the calling process. In a packaged with external location or unpackaged app, you can opt to load the Windows App SDK framework package explicitly by calling Bootstrapper APIs such as [**MddBootstrapInitialize**](/windows/windows-app-sdk/api/win32/mddbootstrap/nf-mddbootstrap-mddbootstrapinitialize). Also see [Reference the Windows App SDK framework package at run time](/windows/apps/windows-app-sdk/use-windows-app-sdk-run-time).
28+
A redistributable component providing an API to find and load the Windows App SDK framework package for the calling process. In a packaged with external location or unpackaged app, you can opt to load the Windows App SDK framework package explicitly by calling Bootstrapper APIs such as [**MddBootstrapInitialize**](/windows/windows-app-sdk/api/win32/mddbootstrap/nf-mddbootstrap-mddbootstrapinitialize). Also see [Reference the Windows App SDK framework package at run time](../windows-app-sdk/use-windows-app-sdk-run-time.md).
2929

3030
#### C++/WinRT
3131
C++/WinRT is a standard C++17 language projection for Windows Runtime (WinRT) APIs, implemented as a header-file-based library, and designed to provide you with first-class access to modern Windows APIs. [C++/WinRT](/windows/uwp/cpp-and-winrt-apis/).
@@ -113,4 +113,4 @@ XAML Islands lets you host WinRT XAML controls in non-UWP desktop (Win32, WinFor
113113

114114
## Related topics
115115
- [Windows developer FAQ](windows-developer-faq.yml)
116-
- [Overview of app development options](./index.md)
116+
- [Overview of app development options](./index.md)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
> [!IMPORTANT]
2-
> If you're working on a UWP app, then refer to [Migrate from UWP to the Windows App SDK](/windows/apps/windows-app-sdk/migrate-to-windows-app-sdk/migrate-to-windows-app-sdk-ovw).
2+
> If you're working on a UWP app, then refer to [Migrate from UWP to the Windows App SDK](../migrate-to-windows-app-sdk/migrate-to-windows-app-sdk-ovw.md).

hub/apps/windows-app-sdk/tutorial-unpackaged-deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ Follow these instructions to configure a C# WinUI 3 project that's either packag
6666

6767
1. You're now ready to use the bootstrapper API (see [Use the Windows App SDK runtime for apps packaged with external location or unpackaged](use-windows-app-sdk-run-time.md)) to dynamically take a dependency on the Windows App SDK framework package. This enables you to use the Windows App SDK APIs in your app.
6868

69-
Open the **Program.cs** code file, and replace the default code with the following code to call the [**Bootstrap.Initialize**](/windows/apps/api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap#initialize-methods) method to initialize the bootstrapper. This code defines what version of the Windows App SDK the app is dependent upon when initializing the bootstrapper.
69+
Open the **Program.cs** code file, and replace the default code with the following code to call the [**Bootstrap.Initialize**](../api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap.md#initialize-methods) method to initialize the bootstrapper. This code defines what version of the Windows App SDK the app is dependent upon when initializing the bootstrapper.
7070

7171
> [!IMPORTANT]
72-
> You'll need to edit the code below to suit your specific configuration. See the descriptions of the parameters of the [**Bootstrap.Initialize**](/windows/apps/api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap#initialize-methods) method so that you can specify one of the versions of the Windows App SDK that you have installed.
72+
> You'll need to edit the code below to suit your specific configuration. See the descriptions of the parameters of the [**Bootstrap.Initialize**](../api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap.md#initialize-methods) method so that you can specify one of the versions of the Windows App SDK that you have installed.
7373

7474
```csharp
7575
using System;
@@ -91,7 +91,7 @@ Follow these instructions to configure a C# WinUI 3 project that's either packag
9191
}
9292
```
9393

94-
At its root, the bootstrapper API is a native C/C++ API that enables you to use the Windows App SDK APIs in your app. But in a .NET app that uses the Windows App SDK 1.0 or later, you can use the [.NET wrapper for the bootstrapper API](use-windows-app-sdk-run-time.md#net-wrapper-for-the-bootstrapper-api). That wrapper provides an easier way of calling the bootstrapper API in a .NET app than calling the native C/C++ functions directly. The previous code example calls the static [**Initialize**](/windows/apps/api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap#initialize-methods) and **Shutdown** methods of the **Bootstrap** class in the .NET wrapper for the bootstrapper API.
94+
At its root, the bootstrapper API is a native C/C++ API that enables you to use the Windows App SDK APIs in your app. But in a .NET app that uses the Windows App SDK 1.0 or later, you can use the [.NET wrapper for the bootstrapper API](use-windows-app-sdk-run-time.md#net-wrapper-for-the-bootstrapper-api). That wrapper provides an easier way of calling the bootstrapper API in a .NET app than calling the native C/C++ functions directly. The previous code example calls the static [**Initialize**](../api-reference/cs-bootstrapper-apis/microsoft.windows.applicationmodel.dynamicdependency/microsoft.windows.applicationmodel.dynamicdependency.bootstrap.md#initialize-methods) and **Shutdown** methods of the **Bootstrap** class in the .NET wrapper for the bootstrapper API.
9595

9696
1. To demonstrate that the Windows App SDK runtime components were loaded properly, add some code that uses the [ResourceManager](/windows/windows-app-sdk/api/winrt/microsoft.windows.applicationmodel.resources.resourcemanager) class in the Windows App SDK to load a string resource.
9797

@@ -208,4 +208,4 @@ Follow these instructions to configure a C++ WinUI 3 project that's either packa
208208
## Related topics
209209

210210
* [Windows App SDK deployment guide for framework-dependent apps packaged with external location or unpackaged](deploy-unpackaged-apps.md)
211-
* [Runtime architecture](deployment-architecture.md)
211+
* [Runtime architecture](deployment-architecture.md)

0 commit comments

Comments
 (0)