Skip to content

Commit 3b5a1fa

Browse files
authored
Merge pull request #1786 from franarama/patch-2
Fix incorrect closing parenthesis
2 parents 26705d3 + 9677f67 commit 3b5a1fa

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)