Skip to content

Commit feb9a2a

Browse files
committed
docs: fix circular refs and target fw
1 parent cea8b0d commit feb9a2a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/help/docfx.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"dest": "api",
1818
"properties": {
19-
"TargetFramework": "NETSTANDARD2"
19+
"TargetFramework": "netstandard2.0"
2020
}
2121
}
2222
],
@@ -65,7 +65,7 @@
6565
],
6666
"globalMetadata": {
6767
"_appTitle": "SharpZipLib Help",
68-
"_appFooter": "Copyright © 2000-2019 SharpZipLib Contributors",
68+
"_appFooter": "Copyright © 2000-2022 SharpZipLib Contributors",
6969
"_gitContribute": {
7070
"repo": "https://github.com/icsharpcode/SharpZipLib",
7171
"branch": "master"

src/ICSharpCode.SharpZipLib/GZip/GzipOutputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ protected override void Dispose(bool disposing)
188188
}
189189

190190
#if NETSTANDARD2_1_OR_GREATER
191-
/// <inheritdoc cref="DeflaterOutputStream.DisposeAsync"/>
191+
/// <inheritdoc cref="DeflaterOutputStream.Dispose"/>
192192
public override async ValueTask DisposeAsync()
193193
{
194194
try

src/ICSharpCode.SharpZipLib/Zip/FastZip.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public int LegacyCodePage
361361
set => _stringCodec.CodePage = value;
362362
}
363363

364-
/// <inheritdoc cref="StringCodec"/>
364+
/// <inheritdoc cref="Zip.StringCodec"/>
365365
public StringCodec StringCodec
366366
{
367367
get => _stringCodec;

src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ public Encoding ZipCryptoEncoding
739739
set => _stringCodec.ZipCryptoEncoding = value;
740740
}
741741

742-
/// <inheritdoc cref="StringCodec"/>
742+
/// <inheritdoc cref="Zip.StringCodec"/>
743743
public StringCodec StringCodec
744744
{
745745
get => _stringCodec;

0 commit comments

Comments
 (0)