Skip to content

Commit dd53c13

Browse files
authored
Merge pull request MicrosoftDocs#3562 from corob-msft/docs/corob/build-IDE-frontrunner-4
And still more command-line IDE frontrunning
2 parents f2acc20 + cf291f3 commit dd53c13

9 files changed

+15
-15
lines changed

docs/build/reference/v-version-number.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The **/V** option is deprecated beginning in Visual Studio 2005; **/V** was prim
3737

3838
1. Click the **Command Line** property page.
3939

40-
1. Type the compiler option in the **Additional Options** box.
40+
1. Enter the compiler option in the **Additional Options** box.
4141

4242
### To set this compiler option programmatically
4343

docs/build/reference/vcpp-directories-property-page.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ For the Linux version of this page, see [VC++ Directories (Linux C++)](../../lin
1515
To access the **VC++ Directories** property page:
1616

1717
1. If the **Solution Explorer** window is not visible, then on the main menu choose **View** > **Solution Explorer**.
18-
1. Right-click on a project node (not the top-level solution) and choose **Properties**.
19-
1. In the left pane of the **Property Pages** dialog box, select **Configuration Properties** > **VC++ Directories**.
18+
19+
1. Right-click on a project node (not the top-level solution) and choose **Properties** to open the **Property Pages** dialog box.
20+
21+
1. Select the **Configuration Properties** > **VC++ Directories** property page.
2022

2123
VC++ Directories properties apply to a project, not the top-level solution node. If you do not see **VC++ Directories** under **Configuration Properties**, select a C++ project node in the **Solution Explorer** window:
2224

docs/build/reference/vd-disable-construction-displacements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ These options affect entire source files. Use [vtordisp](../../preprocessor/vtor
4747

4848
1. Click the **Command Line** property page.
4949

50-
1. Type the compiler option in the **Additional Options** box.
50+
1. Enter the compiler option in the **Additional Options** box.
5151

5252
### To set this compiler option programmatically
5353

docs/build/reference/wholearchive-include-all-library-object-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The /WHOLEARCHIVE option was introduced in Visual Studio 2015 Update 2.
3232

3333
1. Select the **Command Line** property page under **Configuration Properties**, **Linker**.
3434

35-
1. Add the /WHOLEARCHIVE option to the **Additional Options** text box.
35+
1. Add the *`/WHOLEARCHIVE`* option to the **Additional Options** text box.
3636

3737
## See also
3838

docs/build/reference/wl-enable-one-line-diagnostics.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Appends additional information to an error or warning message.
1818

1919
## Remarks
2020

21-
Error and warning messages from the C++ compiler can be followed by additional information that appears, by default, on a new line. When you compile from the command line, the additional line of information can be appended to the error or warning message. This might be desirable if you capture your build output to a log file and then process that log to find all errors and warnings. A semicolon will separate the error or warning message from the additional line.
21+
Error and warning messages from the C++ compiler can be followed by additional information that appears, by default, on a new line. When you compile from the command line, the extra line of information can be appended to the error or warning message. It's useful if you capture your build output to a log file and then process that log to find all errors and warnings. A semicolon will separate the error or warning message from the additional line.
2222

23-
Not all error and warning messages have an additional line of information. The following code will generate an error that has an additional line of information; it will let you test the effect when you use **/WL**.
23+
Not all error and warning messages have an extra line of information. The following code will generate an error that has another line of information. It lets you test the effect when you use **/WL**.
2424

2525
```cpp
2626
// compiler_option_WL.cpp
@@ -40,7 +40,7 @@ int main() {
4040

4141
1. Click the **Command Line** property page.
4242

43-
1. Type the compiler option in the **Additional Options** box.
43+
1. Enter the compiler option in the **Additional Options** box.
4444

4545
### To set this compiler option programmatically
4646

docs/build/reference/wp64-detect-64-bit-portability-issues.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ If you regularly compile your application by using a compiler that builds 64-bit
3535

3636
### To set this compiler option in the Visual Studio development environment
3737

38-
1. Open the project **Property Pages** dialog box.
39-
40-
For more information, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md).
38+
1. Open the project's **Property Pages** dialog box. For details, see [Set C++ compiler and build properties in Visual Studio](../working-with-project-properties.md).
4139

4240
1. Click the **C/C++** folder.
4341

docs/build/reference/wx-treat-linker-warnings-as-errors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.assetid: e4ba97c7-93f7-43ae-a4bb-d866790926c9
1616

1717
/WX causes no output file to be generated if the linker generates a warning.
1818

19-
This is similar to **/WX** for the compiler (see [/w, /W0, /W1, /W2, /W3, /W4, /w1, /w2, /w3, /w4, /Wall, /wd, /we, /wo, /Wv, /WX (Warning Level)](compiler-option-warning-level.md) for more information). However, specifying **/WX** for the compilation does not imply that **/WX** will also be in effect for the link phase; you must explicitly specify **/WX** for each tool.
19+
This option is similar to **/WX** for the compiler. For more information, see [/w, /W0, /W1, /W2, /W3, /W4, /w1, /w2, /w3, /w4, /Wall, /wd, /we, /wo, /Wv, /WX (Warning Level)](compiler-option-warning-level.md). However, specifying **/WX** for the compilation doesn't imply that **/WX** will also be in effect for the link phase; you must explicitly specify **/WX** for each tool.
2020

2121
By default, **/WX** is not in effect. To treat linker warnings as errors, specify **/WX**. **/WX:NO** is the same as not specifying **/WX**.
2222

@@ -28,7 +28,7 @@ By default, **/WX** is not in effect. To treat linker warnings as errors, specif
2828

2929
1. Click the **Command Line** property page.
3030

31-
1. Type the option into the **Additional Options** box.
31+
1. Enter the option into the **Additional Options** box.
3232

3333
### To set this linker option programmatically
3434

docs/build/reference/y-ignore-precompiled-header-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ For more information on precompiled headers, see:
3232

3333
1. Click the **Command Line** property page.
3434

35-
1. Type the compiler option in the **Additional Options** box.
35+
1. Enter the compiler option in the **Additional Options** box.
3636

3737
### To set this compiler option programmatically
3838

docs/build/reference/yd-place-debug-information-in-object-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For more information on precompiled headers, see:
4040

4141
1. Click the **Command Line** property page.
4242

43-
1. Type the compiler option in the **Additional Options** box.
43+
1. Enter the compiler option in the **Additional Options** box.
4444

4545
### To set this compiler option programmatically
4646

0 commit comments

Comments
 (0)