Skip to content

Commit c98032c

Browse files
author
Colin Robertson
committed
Bullets instead of numbers for list
1 parent a2fcea3 commit c98032c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/build/reference/vcxproj-file-structure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ For manual editing scenarios, this article contains basic information about the
2121

2222
If you choose to manually edit a *`.vcxproj`* file, be aware of these facts:
2323

24-
1. The structure of the file must follow a prescribed form, which is described in this article.
24+
- The structure of the file must follow a prescribed form, which is described in this article.
2525

26-
1. The Visual Studio C++ project system currently doesn't support wildcards or lists directly in project items. For example, these forms aren't supported:
26+
- The Visual Studio C++ project system currently doesn't support wildcards or lists directly in project items. For example, these forms aren't supported:
2727

2828
```xml
2929
<ItemGroup>
@@ -34,7 +34,7 @@ If you choose to manually edit a *`.vcxproj`* file, be aware of these facts:
3434

3535
For more information on wildcard support in projects and possible workarounds, see [`.vcxproj` files and wildcards](vcxproj-files-and-wildcards.md).
3636

37-
1. The Visual Studio C++ project system currently doesn't support macros in project item paths. For example, this form isn't supported:
37+
- The Visual Studio C++ project system currently doesn't support macros in project item paths. For example, this form isn't supported:
3838

3939
```xml
4040
<ItemGroup>
@@ -44,13 +44,13 @@ If you choose to manually edit a *`.vcxproj`* file, be aware of these facts:
4444

4545
"Not supported" means that macros aren't guaranteed to work for all operations in the IDE. Macros that don't change their value in different configurations should work, but might not be preserved if an item is moved to a different filter or project. Macros that change their value for different configurations will cause problems. That's because the IDE doesn't expect project item paths to be different for different project configurations.
4646

47-
1. To add, remove, or modify project properties correctly when you edit them in the **Project Properties** dialog, the file must contain separate groups for each project configuration. The conditions must be in this form:
47+
- To add, remove, or modify project properties correctly when you edit them in the **Project Properties** dialog, the file must contain separate groups for each project configuration. The conditions must be in this form:
4848

4949
```xml
5050
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"
5151
```
5252

53-
1. Each property must be specified in the group with correct label, as specified in the property rule file. For more information, see [Property page xml rule files](property-page-xml-files.md).
53+
- Each property must be specified in the group with its correct label, as specified in the property rule file. For more information, see [Property page xml rule files](property-page-xml-files.md).
5454

5555
## `.vcxproj` file elements
5656

0 commit comments

Comments
 (0)