You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: support/developer/visualstudio/cpp/libraries/c-runtime-packages-desktop-bridge.md
+10-18Lines changed: 10 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
title: C++ Runtime packages for Desktop Bridge
3
3
description: Describes how Windows desktop applications that have a dependency on the C++ Runtime libraries can't redistribute the version of the libraries that's included with Visual Studio or via the Visual C++ redistributable (VCRedist) packages. Explains how to create a Desktop Bridge container that includes the correct C++ Runtime libraries.
4
-
ms.date: 06/12/2024
4
+
ms.date: 12/10/2025
5
5
ms.custom: sap:C and C++ Libraries\C and C++ runtime libraries and Standard Template Library (STL)
6
6
ms.reviewer: ericmitt, sherifm, msaleh
7
7
ms.topic: how-to
8
8
---
9
9
# C++ Runtime framework packages for Desktop Bridge
10
10
11
-
This article describes how to create a Desktop Bridge container that includes the correct C++ Runtime libraries.
11
+
This article describes how to create a Desktop Bridge application that references the required C++ Runtime libraries.
12
12
13
13
_Original product version:_ Windows 10
14
14
_Original KB number:_ 3176696
@@ -19,21 +19,13 @@ Windows desktop applications that have a dependency on the C++ Runtime libraries
19
19
20
20
## How to install and update Desktop framework packages
21
21
22
-
Microsoft provides C++ Runtime framework packages to allow applications to reference the C++ runtime from desktop applications distributed through the Windows Store. These packages are distributed and updated through the Windows Store and are handled similarly to C++ UWP framework packages.
22
+
Microsoft provides C++ Runtime framework packages to allow applications to reference the C++ runtime from desktop applications distributed through the Microsoft Store. These packages are distributed and updated through the Microsoft Store and are handled similarly to C++ UWP framework packages.
23
23
24
-
For development purposes, the current version (v14.0) of both debug and retail appx packages are included with Visual Studio 2022 when you choose the **Universal Windows Platform Development** workload with the optional **C++ (v143) Universal Windows Tools** component. The packages can be found under `%ProgramFiles(x86)%\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs.Desktop\14.0`.
25
-
26
-
> [!NOTE]
27
-
> The following package download links are now deprecated, and may no longer work in the future. Make sure to use the method described above to obtain the framework packages.
For development and testing purposes, the current version (v14) of both debug and retail appx packages are included with Visual Studio 2026 when you choose the **Universal Windows Platform Development** workload with the optional **C++ (v145) Universal Windows Tools** component. The packages can be found under `%ProgramFiles(x86)%\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs.Desktop\14.0`.
33
25
34
26
## Legacy Desktop framework packages
35
27
36
-
Older C++ Runtime framework packages for desktop applications, v11.0 and v12.0, can be downloaded and installed from these locations:
28
+
Older C++ Runtime framework packages for desktop applications, such as v11.0 and v12.0, are no longer supported. However, they can be downloaded and installed from these locations:
37
29
38
30
-[C++ Runtime v11.0 framework package for Desktop Bridge (Project Centennial)](https://www.microsoft.com/download/details.aspx?id=53340)
39
31
-[C++ Runtime v12 framework package for Desktop Bridge (Project Centennial)](https://www.microsoft.com/download/details.aspx?id=53176)
@@ -44,14 +36,14 @@ The C++ Runtime framework packages will be copied to a subfolder under `%Program
44
36
45
37
In your application's *AppxManifest.xml* file, specify a `PackageDependency` value that corresponds to the appropriate framework package:
0 commit comments