Skip to content

Commit cdb4800

Browse files
committed
Renaming.
1 parent fa45525 commit cdb4800

File tree

78 files changed

+28
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+28
-30
lines changed

AppCoreNet.Extensions.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,19 +79,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{A038B60C-C
7979
Http\test\Directory.Build.props = Http\test\Directory.Build.props
8080
EndProjectSection
8181
EndProject
82-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCore.Extensions.Http.Authentication", "Http\src\AppCore.Extensions.Http.Authentication\AppCore.Extensions.Http.Authentication.csproj", "{D6108CCC-CFD4-40A0-BD5C-B6F0ADFB5E5C}"
82+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCoreNet.Extensions.Http.Authentication", "Http\src\AppCoreNet.Extensions.Http.Authentication\AppCoreNet.Extensions.Http.Authentication.csproj", "{D6108CCC-CFD4-40A0-BD5C-B6F0ADFB5E5C}"
8383
EndProject
84-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCore.Extensions.Http.Authentication.OAuth", "Http\src\AppCore.Extensions.Http.Authentication.OAuth\AppCore.Extensions.Http.Authentication.OAuth.csproj", "{DCEFCF02-50A5-433D-BB40-CA321E75F354}"
84+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCoreNet.Extensions.Http.Authentication.OAuth", "Http\src\AppCoreNet.Extensions.Http.Authentication.OAuth\AppCoreNet.Extensions.Http.Authentication.OAuth.csproj", "{DCEFCF02-50A5-433D-BB40-CA321E75F354}"
8585
EndProject
86-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCore.Extensions.Http.Authentication.Tests", "Http\test\AppCore.Extensions.Http.Authentication.Tests\AppCore.Extensions.Http.Authentication.Tests.csproj", "{5AD02E91-D970-402E-8958-6B33C86FFD4C}"
86+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCoreNet.Extensions.Http.Authentication.Tests", "Http\test\AppCoreNet.Extensions.Http.Authentication.Tests\AppCoreNet.Extensions.Http.Authentication.Tests.csproj", "{5AD02E91-D970-402E-8958-6B33C86FFD4C}"
8787
EndProject
8888
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{B093F9C1-5054-4198-AE1D-38510FA0547A}"
8989
EndProject
9090
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkerService", "Http\samples\WorkerService\WorkerService.csproj", "{FCE07DAA-08DC-41E0-B091-4A24F1538551}"
9191
EndProject
92-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCore.Extensions.Http.Authentication.OAuth.AspNetCore", "Http\src\AppCore.Extensions.Http.Authentication.OAuth.AspNetCore\AppCore.Extensions.Http.Authentication.OAuth.AspNetCore.csproj", "{9301436D-85F6-4845-AAD6-33103F49F018}"
92+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore", "Http\src\AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore\AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore.csproj", "{9301436D-85F6-4845-AAD6-33103F49F018}"
9393
EndProject
94-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect", "Http\src\AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect\AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect.csproj", "{91754F75-CC7A-48C8-A133-9F087BE10CFE}"
94+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect", "Http\src\AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect\AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect.csproj", "{91754F75-CC7A-48C8-A133-9F087BE10CFE}"
9595
EndProject
9696
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Http\samples\Web\Web.csproj", "{7D72ABA6-5EBE-491A-A599-65D15FD10308}"
9797
EndProject

Http/samples/Web/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
using AppCore.Extensions.DependencyInjection;
2+
using AppCoreNet.Extensions.DependencyInjection;
33
using Microsoft.AspNetCore.Authentication;
44
using Microsoft.AspNetCore.Builder;
55
using Microsoft.Extensions.DependencyInjection;

Http/samples/Web/Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\..\src\AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect\AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect.csproj" />
9+
<ProjectReference Include="..\..\src\AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect\AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect.csproj" />
1010
</ItemGroup>
1111

1212
</Project>

Http/samples/WorkerService/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
using AppCore.Extensions.DependencyInjection;
2+
using AppCoreNet.Extensions.DependencyInjection;
33
using Microsoft.Extensions.DependencyInjection;
44
using Microsoft.Extensions.Hosting;
55
using WorkerService;

Http/samples/WorkerService/WorkerService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\..\src\AppCore.Extensions.Http.Authentication.OAuth\AppCore.Extensions.Http.Authentication.OAuth.csproj" />
15+
<ProjectReference Include="..\..\src\AppCoreNet.Extensions.Http.Authentication.OAuth\AppCoreNet.Extensions.Http.Authentication.OAuth.csproj" />
1616
</ItemGroup>
1717
</Project>

Http/src/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore.csproj renamed to Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<ProjectReference Include="..\AppCore.Extensions.Http.Authentication.OAuth\AppCore.Extensions.Http.Authentication.OAuth.csproj" />
17+
<ProjectReference Include="..\AppCoreNet.Extensions.Http.Authentication.OAuth\AppCoreNet.Extensions.Http.Authentication.OAuth.csproj" />
1818
</ItemGroup>
1919

2020
</Project>

Http/src/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSchemeOAuthClientOptions.cs renamed to Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSchemeOAuthClientOptions.cs

File renamed without changes.

Http/src/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSchemeOAuthClientOptionsResolver.cs renamed to Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSchemeOAuthClientOptionsResolver.cs

File renamed without changes.

Http/src/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSessionOAuthUserTokenStore.cs renamed to Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore/AuthenticationSessionOAuthUserTokenStore.cs

File renamed without changes.

Http/src/AppCore.Extensions.Http.Authentication.OAuth.AspNetCore/DependencyInjection/IOAuthClientFromAuthenticationSchemeBuilder.cs renamed to Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore/DependencyInjection/IOAuthClientFromAuthenticationSchemeBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Microsoft.Extensions.DependencyInjection;
55

66
// ReSharper disable once CheckNamespace
7-
namespace AppCore.Extensions.DependencyInjection;
7+
namespace AppCoreNet.Extensions.DependencyInjection;
88

99
/// <summary>
1010
/// Builder object for OAuth client credentials authentication scheme from ASP.NET Core authentication

0 commit comments

Comments
 (0)