Skip to content

Commit 5ec5dc5

Browse files
committed
ZipFile fixes. Zip64 fixes. Summary comment fixes.
1 parent 8bfe23a commit 5ec5dc5

File tree

7 files changed

+239
-154
lines changed

7 files changed

+239
-154
lines changed

SharpZipLib.shfb

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<project schemaVersion="1.4.0.2">
1+
<project schemaVersion="1.6.0.2">
22
<assemblies>
33
<assembly assemblyPath=".\current\net-11\ICSharpCode.SharpZipLib.dll" xmlCommentsPath=".\current\net-11\ICSharpCode.SharpZipLib.xml" commentsOnly="False" />
44
</assemblies>
@@ -20,10 +20,11 @@
2020
<VisibleItems>InheritedMembers, InheritedFrameworkMembers, Protected, SealedProtected</VisibleItems>
2121
<HtmlHelp1xCompilerPath path="" />
2222
<HtmlHelp2xCompilerPath path="" />
23-
<OutputPath>C:\Common\User\John\Development\SharpZip\SharpZipLib\trunk\SharpZipLib\current\doc\</OutputPath>
23+
<OutputPath>C:\Common\User\John\Development\SharpZipLib\trunk\SharpZipLib\current\doc\</OutputPath>
2424
<SandcastlePath path="" />
2525
<WorkingPath path="" />
2626
<CleanIntermediates>True</CleanIntermediates>
27+
<KeepLogFile>True</KeepLogFile>
2728
<HelpFileFormat>HtmlHelp1x</HelpFileFormat>
2829
<PurgeDuplicateTopics>True</PurgeDuplicateTopics>
2930
<CppCommentsFixup>False</CppCommentsFixup>
@@ -43,8 +44,12 @@
4344
<FooterText />
4445
<ProjectLinkType>Local</ProjectLinkType>
4546
<SdkLinkType>Msdn</SdkLinkType>
47+
<SdkLinkTarget>Blank</SdkLinkTarget>
4648
<PresentationStyle>Prototype</PresentationStyle>
4749
<NamingMethod>Guid</NamingMethod>
4850
<SyntaxFilters>Standard</SyntaxFilters>
51+
<ShowFeedbackControl>False</ShowFeedbackControl>
4952
<ContentPlacement>AboveNamespaces</ContentPlacement>
53+
<ContentSiteMap path="" />
54+
<TopicFileTransform path="" />
5055
</project>

src/Tar/TarOutputStream.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,7 @@ public void PutNextEntry(TarEntry entry)
275275
longHeader.GroupName = "";
276276
longHeader.UserName = "";
277277
longHeader.LinkName = "";
278-
279-
longHeader.Size = entry.TarHeader.Name.Length;
278+
longHeader.Size = entry.TarHeader.Name.Length;
280279

281280
longHeader.WriteHeader(this.blockBuffer);
282281
this.buffer.WriteBlock(this.blockBuffer); // Add special long filename header block

src/Zip/FastZip.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public IEntryFactory EntryFactory
275275
}
276276

277277
/// <summary>
278-
/// Gets or sets the setting for <see cref="UseZip64">Zip64 handling.</see>
278+
/// Gets or sets the setting for <see cref="UseZip64">Zip64 handling when writing.</see>
279279
/// </summary>
280280
/// <remarks>
281281
/// The default value is dynamic which is not backwards compatible with old

src/Zip/ZipConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ public static byte[] ConvertToArray(string str)
590590
/// <summary>
591591
/// Convert a string to a byte array
592592
/// </summary>
593-
/// <param name="flags">The applicable general purpose bits flags</param>
593+
/// <param name="flags">The applicable <see cref="GeneralBitFlags">general purpose bits flags</see></param>
594594
/// <param name="str">
595595
/// String to convert to an array
596596
/// </param>

0 commit comments

Comments
 (0)