Skip to content

Commit 34b71f0

Browse files
authored
Acrolinx fixes
1 parent d35bce7 commit 34b71f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/ide/how-to-specify-build-events-visual-basic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Build events are specified in the **Build Events** dialog box, available from th
5454
:::moniker-end
5555

5656
> [!NOTE]
57-
> Add a `call` statement before all post-build commands that run *.bat* files. For example, `call C:\MyFile.bat` or `call C:\MyFile.bat call C:\MyFile2.bat`.
57+
> Add a `call` statement before all post-build commands that run `.bat` files. For example, `call C:\MyFile.bat` or `call C:\MyFile.bat call C:\MyFile2.bat`.
5858
5959
> [!NOTE]
6060
> If your pre-build or post-build event does not complete successfully, you can terminate the build by having your event action exit with a code other than zero (0), which indicates a successful action.
@@ -63,7 +63,7 @@ MSBuild property names may be referenced in the scripts. The property is referen
6363

6464
## Example: How to change manifest information using a post-build event
6565

66-
The following procedure shows how to set the minimum operating system version in the application manifest using an *.exe* command called from a post-build event (the *.exe.manifest* file in the project directory). The minimum operating system version is a four-part number such as 4.10.0.0. To do this, the command will change the `<dependentOS>` section of the manifest:
66+
The following procedure shows how to set the minimum operating system version in the application manifest using an `.exe` command called from a post-build event (the `.exe.manifest` file in the project directory). The minimum operating system version is a four-part number such as 4.10.0.0. To do this, the command will change the `<dependentOS>` section of the manifest:
6767

6868
```xml
6969
<dependentOS>
@@ -161,9 +161,9 @@ The following procedure shows how to set the minimum operating system version in
161161

162162
`C:\TEMP\ChangeOSVersionVB.exe "$(TargetPath).manifest" 5.1.2600.0`
163163

164-
When you build the project, this command will change the minimum operating system version in the application manifest to 5.1.2600.0.
164+
When you build the project, this command changes the minimum operating system version in the application manifest to 5.1.2600.0.
165165

166-
The `$(TargetPath)` macro expresses the full path for the executable being created. Therefore, *$(TargetPath).manifest* will specify the application manifest created in the *bin* directory. Publishing will copy this manifest to the publishing location that you set earlier.
166+
The `$(TargetPath)` macro expresses the full path for the executable being created. Therefore, *$(TargetPath).manifest* will specify the application manifest created in the *bin* directory. Publishing copies this manifest to the publishing location that you set earlier.
167167

168168
8. Publish the project again. Go to the **Publish** page and click **Publish Now**.
169169

0 commit comments

Comments
 (0)