Skip to content

Commit 7bda6e1

Browse files
committed
acrolinx
1 parent a17f8b5 commit 7bda6e1

17 files changed

+18
-18
lines changed

docs/build/reference/base-base-address.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The **`/BASE`** linker option sets a base address for the program. It overrides
2222

2323
The linker issues an error if *`address`* isn't a multiple of 64K. You can optionally specify the size of the program. The linker issues a warning if the program can't fit in the size you specified.
2424

25-
On the command line, another way to specify the base address is by using a *base address response file*. A base address response file is a text file that contains the base addresses and optional sizes of all the DLLs your program uses, and a unique text key for each base address. To specify a base address by using a response file, use an at sign (**`@`**) followed by the name of the response file, *`filename`*, followed by a comma, then the *`key`* value for the base address to use in the file. The linker looks for *`filename`* in either the specified path, or if no path is specified, in the directories specified in the `LIB` environment variable. The fully-qualified *`filename`* must not exceed `MAX_PATH` (260 characters). Each line in *`filename`* represents one DLL and has the following syntax:
25+
On the command line, another way to specify the base address is by using a *base address response file*. A base address response file is a text file that contains the base addresses and optional sizes of all the DLLs your program uses, and a unique text key for each base address. To specify a base address by using a response file, use an at sign (**`@`**) followed by the name of the response file, *`filename`*, followed by a comma, then the *`key`* value for the base address to use in the file. The linker looks for *`filename`* in either the specified path, or if no path is specified, in the directories specified in the `LIB` environment variable. The fully qualified *`filename`* must not exceed `MAX_PATH` (260 characters). Each line in *`filename`* represents one DLL and has the following syntax:
2626

2727
> *`key`* *`address`* \[*`size`*] **`;`** *`comment`*
2828

docs/build/reference/def-specify-module-definition-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Specifies a module-definition file to the linker.
1616
## Arguments
1717

1818
*`filename`*\
19-
The name of a module-definition file (*`.def`*) to be passed to the linker. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
19+
The name of a module-definition file (*`.def`*) to be passed to the linker. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2020

2121
## Remarks
2222

docs/build/reference/genprofile-fastgenprofile-generate-profiling-instrumented-build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Use **`PATH`** to specify a separate set of PGO counters for each unique path t
4343
Specifies whether to use extra counters to keep an accurate count when exceptions are thrown during training. Use **`TRACKEH`** to specify extra counters for an exact count. Use **`NOTRACKEH`** to specify single counters for code that doesn't use exception handling or that doesn't run into exceptions in your training scenarios. When you specify **`/GENPROFILE`**, the default is **`TRACKEH`** . When you specify **`/FASTGENPROFILE`**, the default is **`NOTRACKEH`** .
4444

4545
**`PGD`**=*filename*\
46-
Specifies a base filename for the *`.pgd`* file. By default, the linker uses the base executable image filename with a *`.pgd`* extension. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
46+
Specifies a base filename for the *`.pgd`* file. By default, the linker uses the base executable image filename with a *`.pgd`* extension. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
4747

4848
## Remarks
4949

docs/build/reference/idlout-name-midl-output-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ helpviewer_keywords: ["MIDL, output file names", ".idl files, path", "MIDL", "/I
1717
An absolute or relative path specification. By specifying a path, you affect only the location of an `.idl` file; all other files are placed in the project directory.
1818

1919
*`filename`*\
20-
Specifies the name of the `.idl` file created by the MIDL compiler. No file extension is assumed; specify *`filename.idl` if you want an `.idl` extension. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
20+
Specifies the name of the `.idl` file created by the MIDL compiler. No file extension is assumed; specify *`filename.idl` if you want an `.idl` extension. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2121

2222
## Remarks
2323

docs/build/reference/ilk-name-incremental-database-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The **`/ILK`** linker option tells the linker where to put the *`.ilk`* database
1616
### Arguments
1717

1818
*`pathname`*\
19-
The destination directory and filename for the generated *`.ilk`* file. If the **`/ILK`** option isn't specified when **`/INCREMENTAL`** is used, the filename is created by appending *`.ilk`* to the target base filename. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
19+
The destination directory and filename for the generated *`.ilk`* file. If the **`/ILK`** option isn't specified when **`/INCREMENTAL`** is used, the filename is created by appending *`.ilk`* to the target base filename. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2020

2121
## Remarks
2222

docs/build/reference/implib-name-import-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ helpviewer_keywords: ["IMPLIB linker option", "/IMPLIB linker option", "-IMPLIB
1414
## Argument
1515

1616
*`filename`*\
17-
A user-specified name for the import library. It replaces the default name. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
17+
A user-specified name for the import library. It replaces the default name. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
1818

1919
## Remarks
2020

docs/build/reference/libpath-additional-libpath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ helpviewer_keywords: ["LIBPATH linker option", "/LIBPATH linker option", "Additi
1414
## Argument
1515

1616
*`dir`*\
17-
Specifies a path that the linker searches before it searches the path specified in the `LIB` environment option. When expanded, the fully-qualified directory must not exceed `MAX_PATH` (260 characters).
17+
Specifies a path that the linker searches before it searches the path specified in the `LIB` environment option. When expanded, the fully qualified directory must not exceed `MAX_PATH` (260 characters).
1818

1919
## Remarks
2020

docs/build/reference/link-repro-full-path-rsp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This flag was introduced in Visual Studio 2022 version 17.11.
1818
## Argument
1919

2020
*`filename`*\
21-
Specifies the name of the response file to create. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
21+
Specifies the name of the response file to create. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2222

2323
## Remarks
2424

docs/build/reference/linkrepro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Tells the linker or library tool to generate a link repro in a specified directo
1616
### Arguments
1717

1818
**_directory-name_**\
19-
The user-specified directory to store the link repro in. Directory names that include spaces must be enclosed in double quotes. When expanded, the fully-qualified link repro filename must not exceed `MAX_PATH` (260 characters).
19+
The user-specified directory to store the link repro in. Directory names that include spaces must be enclosed in double quotes. When expanded, the fully qualified link repro filename must not exceed `MAX_PATH` (260 characters).
2020

2121
## Remarks
2222

docs/build/reference/manifestinput-specify-manifest-input.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Specifies a manifest input file to include in the manifest that's embedded in th
1515
### Parameters
1616

1717
*filename*\
18-
The manifest file to include in the embedded manifest. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
18+
The manifest file to include in the embedded manifest. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
1919

2020
## Remarks
2121

2222
The **`/MANIFESTINPUT`** option specifies the path of an input file to use to create the embedded manifest in an executable image. If you have multiple manifest input files, use the switch multiple times: once for each input file. The manifest input files are merged to create the embedded manifest. This option requires the **`/MANIFEST:EMBED`** option.
2323

24-
This option can't be set directly in Visual Studio. Instead, use the **Additional Manifest Files** property of the project to specify additional manifest files to include. For more information, see [Manifest Tool Property Pages](manifest-tool-property-pages.md).
24+
This option can't be set directly in Visual Studio. Instead, use the **Additional Manifest Files** property of the project to specify other manifest files to include. For more information, see [Manifest Tool Property Pages](manifest-tool-property-pages.md).
2525

2626
## See also
2727

docs/build/reference/out-output-file-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ helpviewer_keywords: ["output files, name linker option", "-OUT linker option",
1212
## Arguments
1313

1414
*`filename`*\
15-
A user-specified name for the output file. It replaces the default name. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
15+
A user-specified name for the output file. It replaces the default name. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
1616

1717
## Remarks
1818

docs/build/reference/pdb-use-program-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Specify the name of the program database (PDB) file that the linker creates.
1616
## Arguments
1717

1818
*`filename`*\
19-
A user-specified name for the program database (PDB) that the linker creates. It replaces the default name. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
19+
A user-specified name for the program database (PDB) that the linker creates. It replaces the default name. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2020

2121
## Remarks
2222

docs/build/reference/pgd-specify-database-for-profile-guided-optimizations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ helpviewer_keywords: ["-PGD linker option", "/PGD linker option"]
1616
## Argument
1717

1818
`filename`\
19-
Specifies the name of the `.pgd` file that is used to hold information about the running program. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
19+
Specifies the name of the `.pgd` file that is used to hold information about the running program. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2020

2121
## Remarks
2222

docs/build/reference/tlbout-name-dot-tlb-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ helpviewer_keywords: ["tlb files, renaming", "TLBOUT linker option", "/TLBOUT li
1717
An absolute or relative path specification for where the .tlb file should be created.
1818

1919
*`filename`*
20-
Specifies the name of the .tlb file created by the MIDL compiler. No file extension is assumed; specify *filename*.tlb if you want a .tlb extension. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
20+
Specifies the name of the .tlb file created by the MIDL compiler. No file extension is assumed; specify *filename*.tlb if you want a .tlb extension. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2121

2222
## Remarks
2323

docs/build/reference/useprofile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This linker option together with [`/LTCG` (Link-time code generation](ltcg-link-
1818
This optional argument specifies that aggressive speed optimizations should be used during optimized code generation.
1919

2020
**`PGD`**=*filename*\
21-
Specifies a base filename for the `.pgd` file. By default, the linker uses the base executable filename with a `.pgd` extension. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
21+
Specifies a base filename for the `.pgd` file. By default, the linker uses the base executable filename with a `.pgd` extension. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
2222

2323
## Remarks
2424

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Force the linker to include all object files in the static library in the linked
1515
### Arguments
1616

1717
*`library`*\
18-
An optional pathname to a static library. The linker includes every object file from this library. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
18+
An optional pathname to a static library. The linker includes every object file from this library. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
1919

2020
## Remarks
2121

docs/build/reference/winmdfile-specify-winmd-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Specifies the filename for the Windows Runtime Metadata (`.winmd`) output file t
1515
## Argument
1616

1717
*`filename`*\
18-
The filename for `.winmd` output file. When expanded, the fully-qualified filename must not exceed `MAX_PATH` (260 characters).
18+
The filename for `.winmd` output file. When expanded, the fully qualified filename must not exceed `MAX_PATH` (260 characters).
1919

2020
## Remarks
2121

0 commit comments

Comments
 (0)