Skip to content

Commit 9677f67

Browse files
author
Fran Ramunno
authored
Fix incorrect closing parenthesis
Remove duplicate closing of ZipDirectory element
1 parent 401be39 commit 9677f67

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/msbuild/zipdirectory-task.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ Creates a *.zip* archive from the contents of a directory.
5252
<Target Name="ZipOutputPath" AfterTargets="Build">
5353
<ZipDirectory
5454
SourceDirectory="$(OutputPath)"
55-
DestinationFile="$(MSBuildProjectDirectory)\output.zip">
56-
/>
55+
DestinationFile="$(MSBuildProjectDirectory)\output.zip" />
5756
</Target>
5857

5958
</Project>

0 commit comments

Comments
 (0)