Skip to content

Commit 4d19697

Browse files
authored
Merge pull request #1784 from zochris/patch-1
fix error in example for import-group element
2 parents dfbe508 + d9e2018 commit 4d19697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/msbuild/importgroup-element.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ Contains a collection of `Import` elements that are grouped under an optional co
6161
```xml
6262
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6363
<ImportGroup>
64-
<Import Project="$(Targets1.targets) />
65-
<Import Project="$(Targets2.targets) />
64+
<Import Project="$(Targets1.targets)" />
65+
<Import Project="$(Targets2.targets)" />
6666
</ImportGroup>
6767
...
6868
</Project>

0 commit comments

Comments
 (0)