Skip to content

Commit 4d0af1f

Browse files
author
mikeblome
committed
more link fixes
1 parent f3355d4 commit 4d0af1f

30 files changed

+38
-118
lines changed

docs/atl/reference/creating-an-atl-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Once your project is created, you can view the files created in **Solution Explo
2727
## See Also
2828

2929
[Adding Functionality with Code Wizards](../../ide/adding-functionality-with-code-wizards-cpp.md)<br/>
30-
[Property Pages](../../ide/property-pages-visual-cpp.md)
30+
[Property Pages](../../build/reference/property-pages-visual-cpp.md)

docs/build/reference/atl-program-or-control-source-and-header-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ All of these files are located in the *Projname* directory, and in either the He
2020

2121
## See Also
2222

23-
[File Types Created for Visual C++ Projects](../file-types-created-for-visual-cpp-projects.md)<br>
23+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)<br>
2424
[MFC Program or Control Source and Header Files](../mfc-program-or-control-source-and-header-files.md)<br>
2525
[CLR Projects](../ide/files-created-for-clr-projects.md)

docs/build/reference/help-files-html-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ The following files are created when you add the HTML Help type of Help support
2020

2121
## See Also
2222

23-
[File Types Created for Visual C++ Projects](../ide/file-types-created-for-visual-cpp-projects.md)
23+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)

docs/build/reference/help-files-winhelp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ You can add WinHelp support to an MFC ActiveX Control project by selecting **Gen
2828

2929
## See Also
3030

31-
[File Types Created for Visual C++ Projects](../ide/file-types-created-for-visual-cpp-projects.md)
31+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)

docs/build/reference/mfc-program-or-control-source-and-header-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ All of these files are located in the *Projname* directory, and in either the He
2727

2828
## See Also
2929

30-
[File Types Created for Visual C++ Projects](../ide/file-types-created-for-visual-cpp-projects.md)<br>
30+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)<br>
3131
[ATL Program or Control Source and Header Files](../ide/atl-program-or-control-source-and-header-files.md)<br>
3232
[CLR Projects](../ide/files-created-for-clr-projects.md)

docs/build/reference/precompiled-header-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ These files are located in the *Projname* directory. In Solution Explorer, Stdaf
1818

1919
## See Also
2020

21-
[File Types Created for Visual C++ Projects](../file-types-created-for-visual-cpp-projects.md)<br>
21+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)<br>
2222
[Working with Project Properties](../working-with-project-properties.md)

docs/build/reference/project-and-solution-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The following files are created when you create a project in Visual Studio. They
2323

2424
## See Also
2525

26-
[File Types Created for Visual C++ Projects](../file-types-created-for-visual-cpp-projects.md)
26+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)

docs/build/reference/property-page-xml-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The only scenarios in which you need to understand the internal workings of thes
1212

1313
First, let's open the property pages for a project (right click on the project node in **Solution Explorer** and choose Properties):
1414

15-
![Visual C++ Project Properties](media/cpp-property-page-2017.png)
15+
![Visual C++ Project Properties](../media/cpp-property-page-2017.png)
1616

1717
Each node under **Configuration Properties** is called a Rule. A Rule sometimes represents a single tool like the compiler, but in general the term refers to something that has properties, that executes and that may produce some output. Each rule is populated from an xml file in the VCTargets folder. For example, the C/C++ rule that is shown above is populated by `cl.xml'.
1818

docs/build/reference/property-pages-visual-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Notice that a property page only displays the settings at the current level for
6969

7070
[Custom Build Step Property Page: General](custom-build-step-property-page-general.md)
7171

72-
[Adding references](adding-references-in-visual-cpp-projects.md)
72+
[Adding references](../adding-references-in-visual-cpp-projects.md)
7373

7474
[General Property Page (File)](general-property-page-file.md)
7575

docs/build/reference/resource-files-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.assetid: 338a4a0f-0c62-4ef1-a34f-5d86262d93a4
88

99
Resources are interface elements that provide information to the user. Bitmaps, icons, toolbars, and cursors are all resources. Some resources can be manipulated to perform an action such as selecting from a menu or entering data in dialog box.
1010

11-
See [Working with Resources](../windows/working-with-resource-files.md) for more information.
11+
See [Working with Resources](../../windows/working-with-resource-files.md) for more information.
1212

1313
|File name|Directory location|Solution Explorer location|Description|
1414
|---------------|------------------------|--------------------------------|-----------------|
@@ -23,4 +23,4 @@ See [Working with Resources](../windows/working-with-resource-files.md) for more
2323

2424
## See Also
2525

26-
[File Types Created for Visual C++ Projects](../ide/file-types-created-for-visual-cpp-projects.md)
26+
[File Types Created for Visual C++ Projects](file-types-created-for-visual-cpp-projects.md)

0 commit comments

Comments
 (0)