From 6279bb564d8c971810531f3306e7bb55256f2108 Mon Sep 17 00:00:00 2001 From: Kishkin Date: Fri, 16 Apr 2021 17:49:54 +0530 Subject: [PATCH] Fixed issue #2188 --- docs/cppcx/universal-windows-apps-cpp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cppcx/universal-windows-apps-cpp.md b/docs/cppcx/universal-windows-apps-cpp.md index 00f5960936..d3a1176c98 100644 --- a/docs/cppcx/universal-windows-apps-cpp.md +++ b/docs/cppcx/universal-windows-apps-cpp.md @@ -11,7 +11,7 @@ The Universal Windows Platform (UWP) is the modern programming interface for Win Most of the UWP documentation is in the Windows content tree at [Universal Windows Platform documentation](/windows/uwp/). There you will find beginning tutorials as well as reference documentation. -For new UWP apps and components, we recommend that you use [C++/WinRT](/windows/uwp/cpp-and-winrt-apis/), a new standard C++17 language projection for Windows Runtime APIs. C++/WinRT is available in the Windows 10 SDK from version 1803 onward. C++/WinRT is implemented entirely in header files, and is designed to provide you with first-class access to the modern Windows API. Unlike the C++/CX implementation, C++/WinRT doesn't use non-standard syntax or Microsoft language extensions, and it takes full advantage of the C++ compiler to create highly-optimized output. For more information, see [Introduction to C++/WinRT](/windows/uwp/cpp-and-winrt-apis/intro-to-using-cpp-with-winrt). +For new UWP apps and components, we recommend that you use [C++/WinRT](/windows/uwp/cpp-and-winrt-apis/), a new standard C++17 language projection for Windows Runtime APIs. C++/WinRT is available in the Windows 10 SDK from version 1803 onward. C++/WinRT is implemented entirely in header files, and is designed to provide you with first-class access to the modern Windows API , Unlike the C++/CX implementation, C++/WinRT doesn't use non-standard syntax or Microsoft language extensions, and it takes full advantage of the C++ compiler to create highly-optimized output. For more information, see [Introduction to C++/WinRT](/windows/uwp/cpp-and-winrt-apis/intro-to-using-cpp-with-winrt). You can use the Desktop Bridge app converter to package your existing desktop application for deployment through the Microsoft Store. For more information, see [Using Visual C++ Runtime in Centennial project](https://devblogs.microsoft.com/cppblog/using-visual-c-runtime-in-centennial-project/) and [Desktop Bridge](/windows/uwp/porting/desktop-to-uwp-root).