Skip to content

Commit

Permalink
docs: fix circular refs and target fw (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
piksel committed Sep 18, 2022
1 parent cea8b0d commit 3c1b3ba
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/help/docfx.json
Expand Up @@ -16,7 +16,7 @@
],
"dest": "api",
"properties": {
"TargetFramework": "NETSTANDARD2"
"TargetFramework": "netstandard2.0"
}
}
],
Expand Down Expand Up @@ -65,7 +65,7 @@
],
"globalMetadata": {
"_appTitle": "SharpZipLib Help",
"_appFooter": "Copyright © 2000-2019 SharpZipLib Contributors",
"_appFooter": "Copyright © 2000-2022 SharpZipLib Contributors",
"_gitContribute": {
"repo": "https://github.com/icsharpcode/SharpZipLib",
"branch": "master"
Expand Down
2 changes: 1 addition & 1 deletion src/ICSharpCode.SharpZipLib/GZip/GzipOutputStream.cs
Expand Up @@ -188,7 +188,7 @@ protected override void Dispose(bool disposing)
}

#if NETSTANDARD2_1_OR_GREATER
/// <inheritdoc cref="DeflaterOutputStream.DisposeAsync"/>
/// <inheritdoc cref="DeflaterOutputStream.Dispose"/>
public override async ValueTask DisposeAsync()
{
try
Expand Down
2 changes: 1 addition & 1 deletion src/ICSharpCode.SharpZipLib/Zip/FastZip.cs
Expand Up @@ -361,7 +361,7 @@ public int LegacyCodePage
set => _stringCodec.CodePage = value;
}

/// <inheritdoc cref="StringCodec"/>
/// <inheritdoc cref="Zip.StringCodec"/>
public StringCodec StringCodec
{
get => _stringCodec;
Expand Down
2 changes: 1 addition & 1 deletion src/ICSharpCode.SharpZipLib/Zip/ZipFile.cs
Expand Up @@ -739,7 +739,7 @@ public Encoding ZipCryptoEncoding
set => _stringCodec.ZipCryptoEncoding = value;
}

/// <inheritdoc cref="StringCodec"/>
/// <inheritdoc cref="Zip.StringCodec"/>
public StringCodec StringCodec
{
get => _stringCodec;
Expand Down

0 comments on commit 3c1b3ba

Please sign in to comment.