Skip to content

Commit 35b1f7a

Browse files
author
mikeblome
committed
improvements to example project file topic
1 parent 61a397b commit 35b1f7a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/ide/project-files.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: "Project Files | Microsoft Docs"
2+
title: "Example Project File | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "11/04/2016"
4+
ms.date: "10/09/2018"
55
ms.technology: ["cpp-ide"]
66
ms.topic: "conceptual"
77
dev_langs: ["C++"]
8-
helpviewer_keywords: [".vcproj files", "Visual C++ projects, project file format", "VCPROJ (Visual C++ project file) format", "project files [C++], .vcproj file format"]
8+
helpviewer_keywords: [".vcxproj files", "C++ projects, project file format"]
99
ms.assetid: 5261cf45-3136-40a6-899e-dc1339551401
1010
author: "corob-msft"
1111
ms.author: "corob"
1212
ms.workload: ["cplusplus"]
1313
---
1414
# Project Files
1515

16-
A Visual C++ project file is an XML-based file that has the .vcxproj file name extension and contains information that is required to build a Visual C++ project.
16+
A Visual C++ project file is an XML-based file that has the .vcxproj file name extension and contains information that is required to build a Visual C++ project. Note that the project file imports various project files that have the extension *.props* or *.targets*. These files contain additional build information, and might themselves refer to other *.props* or *.targets* files. The macros in the file path (for example `$(VCTargetsPath)`) are dependent on your Visual Studio installation. For more information about these macros and *.props* and *.targets* files, see [VC++ Directories Property Page](vcpp-directories-property-page.md), [Working with Project Properties](working-with-project-properties.md#bkmkPropertiesVersusMacros) and [Common Macros for Build Commands and Properties](common-macros-for-build-commands-and-properties.md).
1717

1818
## Example
1919

docs/ide/vcpp-directories-property-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "VC++ Directories Property Page | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "04/26/2018"
4+
ms.date: "10/09/2018"
55
ms.technology: ["cpp-ide"]
66
ms.topic: "conceptual"
77
f1_keywords: ["VC.Project.VCDirectories.IncludePath", "VC.Project.VCDirectories.ReferencePath", "VC.Project.VCDirectories.SourcePath", "VC.Project.VCDirectories.LibraryWPath", "VC.Project.VCDirectories.ExecutablePath", "VC.Project.VCDirectories.LibraryPath", "VS.ToolsOptionsPages.Projects.VCDirectories", "VC.Project.VCDirectories.ExcludePath"]
@@ -58,7 +58,7 @@ Note: The list is populated as you type. Don't press **Enter**.
5858

5959
For more information about macros and why you should use them instead of hard-coded paths whenever possible, see [Working with Project Properties](../ide/working-with-project-properties.md#bkmkPropertiesVersusMacros).
6060

61-
For a list of commonly used macros, see [Common Macros for Build Commands and Properties](https://docs.microsoft.com/cpp/ide/common-macros-for-build-commands-and-properties).
61+
For a list of commonly used macros, see [Common Macros for Build Commands and Properties](common-macros-for-build-commands-and-properties.md).
6262

6363
You can define your own macros in two ways:
6464

0 commit comments

Comments
 (0)