Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix circular refs and target fw #775

Merged
merged 1 commit into from Sep 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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