Skip to content

Commit 19b92af

Browse files
committed
[ksqlDb.RestApi.Client]: KSqlDBContext removed !NETSTANDARD pragma from OnDisposeAsync
1 parent 6ed1521 commit 19b92af

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ksqlDb.RestApi.Client/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ksqlDB.RestApi.Client
22

3+
# Unreleased changes
4+
5+
# BugFix
6+
- `KSqlDBContext` removed `!NETSTANDARD` pragma from `OnDisposeAsync`
7+
38
# 6.1.0
49
- added `HasColumnName` to the Fluent API to allow overriding property names during JSON deserialization and code generation.
510

ksqlDb.RestApi.Client/KSql/Query/Context/KSqlDBContext.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,8 @@ protected override async ValueTask OnDisposeAsync()
295295
{
296296
cts.Dispose();
297297

298-
#if !NETSTANDARD
299298
await base.OnDisposeAsync();
300-
#endif
299+
301300
Dispose(false);
302301
}
303302

0 commit comments

Comments
 (0)