Skip to content

Commit 186c4dd

Browse files
authored
Merge pull request #1 from NetDevPack/dev_rename
Rename project
2 parents ff62d77 + a76f363 commit 186c4dd

39 files changed

+87
-98
lines changed

samples/ApiAuthenticator/Controllers/AuthenticationController.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Controllers/AuthenticationController.cs

File renamed without changes.

samples/ApiAuthenticator/ApiAuthenticator.csproj renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/NetDevPack.Security.JwtExtensions.ApiAuthenticator.csproj

File renamed without changes.

samples/ApiClient/Program.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Program.cs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading.Tasks;
51
using Microsoft.AspNetCore.Hosting;
6-
using Microsoft.Extensions.Configuration;
72
using Microsoft.Extensions.Hosting;
8-
using Microsoft.Extensions.Logging;
93

10-
namespace ApiClient
4+
namespace ApiAuthenticator
115
{
126
public class Program
137
{

samples/ApiAuthenticator/Properties/launchSettings.json renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Properties/launchSettings.json

File renamed without changes.

samples/ApiAuthenticator/Request/AuthenticationRequest.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Request/AuthenticationRequest.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Threading.Tasks;
5-
6-
namespace ApiAuthenticator.Request
1+
namespace ApiAuthenticator.Request
72
{
83
public sealed class AuthenticationRequest
94
{

samples/ApiAuthenticator/Services/DummyAuthenticationService.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Services/DummyAuthenticationService.cs

File renamed without changes.

samples/ApiAuthenticator/Services/IAuthenticationService.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Services/IAuthenticationService.cs

File renamed without changes.

samples/ApiAuthenticator/Startup.cs renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
3737
}
3838

3939
app.UseHttpsRedirection();
40-
app.UseJwksManager();
40+
app.UseJwksDiscovery();
4141
app.UseRouting();
4242

4343
app.UseAuthorization();

samples/ApiAuthenticator/appsettings.Development.json renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/appsettings.Development.json

File renamed without changes.

samples/ApiAuthenticator/appsettings.json renamed to samples/NetDevPack.Security.JwtExtensions.ApiAuthenticator/appsettings.json

File renamed without changes.

0 commit comments

Comments
 (0)