From ca859293a53076fae8e8808dc42334eb76d6430b Mon Sep 17 00:00:00 2001 From: sacOO7 Date: Fri, 19 Apr 2024 19:26:46 +0530 Subject: [PATCH] Refactored README with supported platforms --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 06e0a190b..19eaf5ab2 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This is a .NET client library for Ably which targets the 2.0 client library spec ## Supported platforms * [.NET Standard 2.0+](https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0) -* .NET 6.x, 7.x, MAUI, check [MAUI config](#maui-configuration). +* .NET 6.0+, MAUI, check [MAUI config](#maui-configuration). * .NET Framework 4.6.2+ * .NET (Core) 2.0+ * Mono 5.4+ @@ -424,7 +424,6 @@ var options = new ClientOptions { AuthCallback = async tokenParams => { - // Return serialized jwttokenstring returned from server string jwtToken = await getJwtTokenFromServer(tokenParams); int expiresIn = 3600; // assuming jwtToken has 1 hr expiry return new TokenDetails(jwtToken) {