Skip to content

Commit e9d5231

Browse files
authored
Update docs/ide/how-to-specify-build-events-visual-basic.md
1 parent 445168c commit e9d5231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Build events are specified in the **Build Events** dialog box, available from th
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.
6161
62-
You can reference "macros" (actually MSBuild property names) in the scripts. The property is referenced as `$(PropertyName)` and is substituted with the property value when the event script is executed. For a list of commonly used values, see [MSBuild common properties](../msbuild/common-msbuild-project-properties.md). There may be other properties as well as defined in the project file, in any imported files in the project file, in environment variables, or passed on the command line using the `-p` MSBuild switch during command-line builds.
62+
You can reference "macros" (actually MSBuild property names) in the scripts. To reference a property, use the syntax `$(PropertyName)`, which is substituted with the property value when the event script is executed. For a list of commonly used values, see [MSBuild common properties](../msbuild/common-msbuild-project-properties.md). There may be other properties as well as defined in the project file, in any imported files in the project file, in environment variables, or passed on the command line using the `-p` MSBuild switch during command-line builds.
6363

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

0 commit comments

Comments
 (0)