Skip to content

Commit 8c5f319

Browse files
author
mikeblome
committed
added descriptions for SEO for top task topics
1 parent 1c05a29 commit 8c5f319

8 files changed

+13
-6
lines changed

docs/atl/active-template-library-atl-tutorial.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
title: "Active Template Library (ATL) Tutorial"
3+
description: Create an ActiveX control using Microsoft C++ and the Active Template Library.
34
ms.custom: "get-started-article"
4-
ms.date: "11/04/2016"
5+
ms.date: "05/03/2019"
56
helpviewer_keywords: ["ATL projects, tutorials", "controls [ATL], tutorials", "ATL tutorial", "tutorials [ATL]", "ATL, tutorials"]
67
ms.assetid: f921a121-09c8-4812-9317-e15b2f1471fa
78
---

docs/build/walkthrough-compiling-a-native-cpp-program-on-the-command-line.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Walkthrough: Compiling a Native C++ Program on the Command Line"
3+
description: Use the Microsoft C++ compiler from a command prompt.
34
ms.custom: "conceptual"
45
ms.date: "04/23/2019"
56
helpviewer_keywords: ["native code [C++]", "Visual C++, native code", "compiling programs [C++]", "command-line applications [C++], native"]

docs/build/walkthrough-creating-and-using-a-dynamic-link-library-cpp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
22
title: "Walkthrough: Create and use your own Dynamic Link Library (C++)"
3+
description: Use C++ to create a Windows dynamic-link libraty (DLL) in Visual Studio.
34
ms.custom: "conceptual"
45
ms.date: "04/22/2019"
56
helpviewer_keywords: ["libraries [C++], DLLs", "DLLs [C++], walkthroughs"]
67
ms.assetid: 3ae94848-44e7-4955-bbad-7d40f493e941
78
---
89
# Walkthrough: Create and use your own Dynamic Link Library (C++)
910

10-
This step-by-step walkthrough shows how to use the Visual Studio IDE to create your own dynamic link library (DLL) written in C++, and then use it from another C++ app. DLLs are one of the most useful kinds of Windows components. You can use them as a way to share code and resources, to shrink the size of your apps, and to make it easier to service and extend your apps. In this walkthrough, you create a DLL that implements some math functions, and then create a console app that uses the functions from the DLL. Along the way, you get an introduction to some of the programming techniques and conventions used in Windows DLLs.
11+
This step-by-step walkthrough shows how to use the Visual Studio IDE to create your own dynamic link library (DLL) written in C++, and then use it from another C++ app. DLLs (also known as shared libraries in UNIX-based operating systems) are one of the most useful kinds of Windows components. You can use them as a way to share code and resources, to shrink the size of your apps, and to make it easier to service and extend your apps. In this walkthrough, you create a DLL that implements some math functions, and then create a console app that uses the functions from the DLL. Along the way, you get an introduction to some of the programming techniques and conventions used in Windows DLLs.
1112

1213
This walkthrough covers these tasks:
1314

docs/build/walkthrough-creating-and-using-a-static-library-cpp.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Walkthrough: Creating and Using a Static Library (C++)"
3+
description: Use C++ to create a static library (.lib) in Visual Studio.
34
ms.custom: "get-started-article"
45
ms.date: "04/25/2019"
56
helpviewer_keywords: ["libraries [C++], static", "static libraries [C++]"]

docs/dotnet/walkthrough-compiling-a-cpp-program-that-targets-the-clr-in-visual-studio.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Compile a C++/CLI Program that Targets the CLR"
3+
description: Use Microsoft C++ to create programs and libraries that can connect native C++ code and .NET programs.
34
ms.date: "04/23/2019"
45
helpviewer_keywords: ["command-line applications [C++], managed code", "compiling programs [C++]", "Visual C++, managed code", "managed code [C++]"]
56
ms.assetid: 339f89df-a5d2-4040-831a-ddbe25b5dce4

docs/linux/cmake-linux-project.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Configure a Linux CMake project in Visual Studio"
3-
description: "How to configure a Linux CMake project in Visual Studio"
4-
ms.date: "04/25/2019"
3+
description: "How to configure, edit and compile a Linux CMake project in Visual Studio"
4+
ms.date: "05/03/2019"
55
ms.assetid: f8707b32-f90d-494d-ae0b-1d44425fdc25
66
---
77

docs/overview/2019/cpp-conformance-improvements-2019.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "C++ conformance improvements"
33
ms.date: "03/22/2019"
4+
description: Microsoft C++ in Visual Studio 2019 is progressing toward full conformance with the C++20 language standard.
45
ms.technology: "cpp-language"
56
author: "mikeblome"
67
ms.author: "mblome"

docs/porting/upgrading-projects-from-earlier-versions-of-visual-cpp.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: "Upgrading Projects from Earlier Versions of Visual C++"
3-
ms.date: "11/04/2016"
3+
description: How to upgrade Microsoft C++ projects from older versions of Visual Studio.
4+
ms.date: "05/03/2019"
45
helpviewer_keywords: ["32-bit code porting", "upgrading Visual C++ applications, 32-bit code"]
56
ms.assetid: 18cdacaa-4742-43db-9e4c-2d9e73d8cc84
67
---
@@ -37,6 +38,6 @@ For information about how to update the targeted Windows versions, see [Modifyin
3738

3839
## See also
3940

40-
[What's New for Visual C++ in Visual Studio 2017](../overview/what-s-new-for-visual-cpp-in-visual-studio.md)<br/>
41+
[What's New for Visual C++ in Visual Studio](../overview/what-s-new-for-visual-cpp-in-visual-studio.md)<br/>
4142
[Visual C++ change history 2003 - 2015](../porting/visual-cpp-change-history-2003-2015.md)<br/>
4243
[Nonstandard Behavior](../cpp/nonstandard-behavior.md)

0 commit comments

Comments
 (0)