Skip to content

Commit 09185c9

Browse files
authored
Update README.md
1 parent a2f3162 commit 09185c9

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Mihir.AspNetCore.Authentication.Basic
2-
Basic Scheme Authentication Implementation for ASP.NET Core 2.2
1+
# AspNetCore.Authentication.Basic
2+
Easy to use and very light weight Microsoft style Basic Scheme Authentication Implementation for ASP.NET Core.
33

44
## Installing
55
This library is published on NuGet. So the NuGet package can be installed directly to your project if you wish to use it without making any custom changes to the code.
66

7-
Download directly from [Mihir.AspNetCore.Authentication.Basic](https://www.nuget.org/packages/Mihir.AspNetCore.Authentication.Basic).
7+
Download directly from:
8+
Old Package link - [Mihir.AspNetCore.Authentication.Basic](https://www.nuget.org/packages/Mihir.AspNetCore.Authentication.Basic).
9+
New Package link - [AspNetCore.Authentication.Basic](https://www.nuget.org/packages/AspNetCore.Authentication.Basic).
810

911
Or by running the below command on your project.
1012

1113
```
12-
PM> Install-Package Mihir.AspNetCore.Authentication.Basic
14+
PM> Install-Package AspNetCore.Authentication.Basic
1315
```
1416

1517
## Example Usage
@@ -25,7 +27,7 @@ Also add an implementation of *IBasicUserValidationService* as shown below in [*
2527
#### Startup.cs
2628

2729
```C#
28-
using Mihir.AspNetCore.Authentication.Basic;
30+
using AspNetCore.Authentication.Basic;
2931
public class Startup
3032
{
3133
public Startup(IConfiguration configuration)
@@ -56,7 +58,7 @@ public class Startup
5658

5759
#### BasicUserValidationService.cs
5860
```C#
59-
using Mihir.AspNetCore.Authentication.Basic;
61+
using AspNetCore.Authentication.Basic;
6062
public class BasicUserValidationService : IBasicUserValidationService
6163
{
6264
private readonly ILogger<BasicUserValidationService> _logger;
@@ -91,4 +93,4 @@ public class BasicUserValidationService : IBasicUserValidationService
9193
- [RFC 7617: Technical spec for HTTP Basic](https://tools.ietf.org/html/rfc7617)
9294

9395
## License
94-
[MIT License](https://github.com/mihirdilip/Mihir.AspNetCore.Authentication.Basic/blob/master/LICENSE.txt)
96+
[MIT License](https://github.com/mihirdilip/AspNetCore.Authentication.Basic/blob/master/LICENSE.txt)

0 commit comments

Comments
 (0)