Skip to content

Commit be75f3c

Browse files
committed
Fix readme references to old .NET versions
1 parent 1c74e3d commit be75f3c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

identity-model-oidc-client/samples/HttpSysConsoleClient/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
## HttpSysConsoleClient Sample
22
This sample shows how to use Duende.IdentityModel.OidcClient to build a windows desktop
3-
application in .NET 8. It uses [manual
3+
application in .NET. It uses [manual
44
mode](https://docs.duendesoftware.com/foss/identitymodel.oidcclient/manual/), and listens
55
for callbacks on the loopback address with a hard-coded port.
66

77
### Description of Implementation
88
This sample first creates an
99
[HttpListener](https://learn.microsoft.com/en-us/dotnet/fundamentals/runtime-libraries/system-net-httplistener)
1010
to wait for callbacks from the identity provider at a hard-coded port on the local
11-
machine. Then it usesDuende.IdentityModel.OidcClient to prepare the state and url needed to
11+
machine. Then it uses Duende.IdentityModel.OidcClient to prepare the state and url needed to
1212
login, using that callback url as the redirect uri. It then opens the system browser to
1313
the authorize url by calling `Process.Start` and passing the url. After the user
1414
authenticates, the system browser redirects to the callback url. The HttpListener receives
@@ -20,4 +20,4 @@ and cleans up its HttpListener.
2020

2121
### HTTP.sys
2222
HttpListener is built on top of the HTTP.sys, the windows driver that handles http
23-
requests.
23+
requests.

identity-model-oidc-client/samples/NetCoreConsoleClient/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## NetCoreConsoleClient Sample
22
This sample shows how to use Duende.IdentityModel.OidcClient to build a cross platform desktop
3-
application in .NET 8. It uses [automatic
3+
application in .NET. It uses [automatic
44
mode](https://docs.duendesoftware.com/foss/identitymodel.oidcclient/automatic/), where an
55
IBrowser implementation describes how to invoke the system browser. This sample's browser
66
implementation knows how to open the system browser on Windows, Mac, and Linux (see
@@ -9,7 +9,7 @@ server. See SystemBrowser.cs for the full IBrowser implementation details.
99

1010
### Description of Implementation
1111
This sample first finds an unused port to use as a callback url where it sets up a minimal
12-
kestrel web server listening for callbacks from the identity provider.
12+
kestrel web server listening for callbacks from the identity provider.
1313

1414
Then it uses Duende.IdentityModel.OidcClient to begin the login process, passing an
1515
instance of the SystemBrowser. Behind the scenes, Duende.IdentityModel.OidcClient prepares

identity-model-oidc-client/samples/WindowsConsoleSystemBrowser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## HttpSysConsoleClient Sample
22
This sample shows how to use Duende.IdentityModel.OidcClient to build a windows desktop
3-
application in .NET 8. It uses [manual
3+
application in .NET. It uses [manual
44
mode](https://docs.duendesoftware.com/foss/identitymodel.oidcclient/manual/), and listens for
55
callbacks on a private-use URI scheme.
66

0 commit comments

Comments
 (0)