Skip to content

Commit 852bc03

Browse files
committed
Renaming.
1 parent f3f5d67 commit 852bc03

File tree

11 files changed

+33
-37
lines changed

11 files changed

+33
-37
lines changed

DependencyInjection/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ the `IServiceCollection` by reflection.
66

77
## Packages
88

9-
| Package | Description |
10-
|--------------------------------------------------------------------|---------------------------------------------------------------------------------------|
11-
| `AppCore.Extensions.DependencyInjection.Abstractions` | Provides the abstractions for registering services via reflection. |
12-
| `AppCore.Extensions.DependencyInjection.AssemblyExtensions` | Adds support for registering services by scanning assemblies. |
13-
| `AppCore.Extensions.DependencyInjection.DependencyModelExtensions` | Adds support for registering services by scanning assemblies of a `DependencyContext` |
9+
| Package | Description |
10+
|-----------------------------------------------------------------------|---------------------------------------------------------------------------------------|
11+
| `AppCoreNet.Extensions.DependencyInjection.Abstractions` | Provides the abstractions for registering services via reflection. |
12+
| `AppCoreNet.Extensions.DependencyInjection.AssemblyExtensions` | Adds support for registering services by scanning assemblies. |
13+
| `AppCoreNet.Extensions.DependencyInjection.DependencyModelExtensions` | Adds support for registering services by scanning assemblies of a `DependencyContext` |
1414

1515
## Usage
1616

Hosting/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ and dynamically loading plugins into the hosting application.
66

77
## Packages
88

9-
| Package | Description |
10-
|-----------------------------------------------------|---------------------------------------------------------------|
11-
| `AppCore.Extensions.Hosting.Abstractions` | Provides the public API for the hosting extensions. |
12-
| `AppCore.Extensions.Hosting` | The default implementations, used by the hosting application. |
13-
| `AppCore.Extensions.Hosting.Plugins.Abstractions` | Provides the public API for dynamically loading plugins. |
14-
| `AppCore.Extensions.Hosting.Plugins` | Default implementation of the plugin APIs. |
15-
| `AppCore.Extensions.Hosting.Plugins.AspNetCore.Mvc` | Adds support for registering plugins with MVC. |
9+
| Package | Description |
10+
|--------------------------------------------------------|---------------------------------------------------------------|
11+
| `AppCoreNet.Extensions.Hosting.Abstractions` | Provides the public API for the hosting extensions. |
12+
| `AppCoreNet.Extensions.Hosting` | The default implementations, used by the hosting application. |
13+
| `AppCoreNet.Extensions.Hosting.Plugins.Abstractions` | Provides the public API for dynamically loading plugins. |
14+
| `AppCoreNet.Extensions.Hosting.Plugins` | Default implementation of the plugin APIs. |
15+
| `AppCoreNet.Extensions.Hosting.Plugins.AspNetCore.Mvc` | Adds support for registering plugins with MVC. |

Hosting/src/AppCoreNet.Extensions.Hosting/Internal/LogEventIds.cs

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

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

99
internal class LogEventIds
1010
{

Hosting/src/AppCoreNet.Extensions.Hosting/Internal/LoggerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.Extensions.Logging;
88

99
// ReSharper disable once CheckNamespace
10-
namespace AppCore.Extensions.Hosting;
10+
namespace AppCoreNet.Extensions.Hosting;
1111

1212
internal static class LoggerExtensions
1313
{

Hosting/src/AppCoreNet.Extensions.Hosting/StartupTaskHostedService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
using System.Linq;
88
using System.Threading;
99
using System.Threading.Tasks;
10-
using AppCore.Extensions.Hosting;
1110
using AppCoreNet.Diagnostics;
1211
using Microsoft.Extensions.Hosting;
1312
using Microsoft.Extensions.Logging;

Http/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ This project contains add-ons for the `Microsoft.Extensions.Http` library. It ad
1010

1111
Latest development packages can be found on [MyGet](https://www.myget.org/gallery/appcorenet).
1212

13-
| Package | Description |
14-
|--------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
15-
| `AppCore.Extensions.Http.Authentication` | Provides extensions which adds support for authenticating a HttpClient using different authentication standards. |
16-
| `AppCore.Extensions.Http.Authentication.OAuth` | Adds support for authenticating a HttpClient using OAuth2 bearer tokens. |
17-
| `AppCore.Extensions.Http.Authentication.OAuth.AspNetCore` | Adds support for deriving token client configuration from ASP.NET Core authentication schemes. |
18-
| `AppCore.Extensions.Http.Authentication.OAuth.OpenIdConnect` | Adds support for deriving token client configuration from ASP.NET Core OpenID connect authentication schemes. |
13+
| Package | Description |
14+
|-----------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
15+
| `AppCoreNet.Extensions.Http.Authentication` | Provides extensions which adds support for authenticating a HttpClient using different authentication standards. |
16+
| `AppCoreNet.Extensions.Http.Authentication.OAuth` | Adds support for authenticating a HttpClient using OAuth2 bearer tokens. |
17+
| `AppCoreNet.Extensions.Http.Authentication.OAuth.AspNetCore` | Adds support for deriving token client configuration from ASP.NET Core authentication schemes. |
18+
| `AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect` | Adds support for deriving token client configuration from ASP.NET Core OpenID connect authentication schemes. |
1919

2020
## Usage
2121

@@ -27,7 +27,7 @@ After registering the scheme you have to configure the `IHttpClientFactory` to u
2727
Add the package to your project:
2828

2929
```shell
30-
> dotnet add package AppCore.Extensions.Http.Authentication.OAuth
30+
> dotnet add package AppCoreNet.Extensions.Http.Authentication.OAuth
3131
```
3232

3333
Register a client authentication scheme, the following sample uses client credential authentication.

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
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
55
<Description>
6-
Adds support to AppCore.Extensins.Http.Authenticaton.OAuth for deriving token client configuration
6+
Adds support to AppCoreNet.Extensins.Http.Authenticaton.OAuth for deriving token client configuration
77
from ASP.NET Core authentication schemes.
88
</Description>
99
<PackageTags>$(PackageTags);Security;Authentication;OAuth;OAuth2;OAuth 2.0;IdentityModel;ASP.NET Core</PackageTags>

Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect/AppCoreNet.Extensions.Http.Authentication.OAuth.OpenIdConnect.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
55
<Description>
6-
Adds support to AppCore.Extensins.Http.Authenticaton.OAuth for deriving token client configuration
6+
Adds support to AppCoreNet.Extensins.Http.Authenticaton.OAuth for deriving token client configuration
77
from ASP.NET Core OpenID connect authentication schemes.
88
</Description>
99
<PackageTags>$(PackageTags);Security;Authentication;OAuth;OAuth2;OAuth 2.0;IdentityModel;ASP.NET Core;OpenID Connect</PackageTags>

Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth/AppCoreNet.Extensions.Http.Authentication.OAuth.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net6.0;netstandard2.0;net462</TargetFrameworks>
55
<Description>
6-
Adds support to AppCore.Extensions.Http.Authenticaton for authenticating a HttpClient using OAuth2 bearer tokens.
6+
Adds support to AppCoreNet.Extensions.Http.Authenticaton for authenticating a HttpClient using OAuth2 bearer tokens.
77
</Description>
88
<PackageTags>$(PackageTags);Security;Authentication;OAuth;OAuth2;OAuth 2.0;IdentityModel</PackageTags>
99
</PropertyGroup>

Http/src/AppCoreNet.Extensions.Http.Authentication.OAuth/OAuthTokenCacheOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ namespace AppCoreNet.Extensions.Http.Authentication.OAuth;
1111
public class OAuthTokenCacheOptions
1212
{
1313
/// <summary>
14-
/// Gets or sets the cache key prefix. Defaults to 'AppCore.Http.OAuthToken'.
14+
/// Gets or sets the cache key prefix. Defaults to 'AppCoreNet.Http.OAuthToken'.
1515
/// </summary>
16-
public string CacheKeyPrefix { get; set; } = "AppCore.Http.OAuthToken";
16+
public string CacheKeyPrefix { get; set; } = "AppCoreNet.Http.OAuthToken";
1717

1818
/// <summary>
1919
/// Gets or sets the value to subtract from token lifetime for the cache entry lifetime (defaults to 3 seconds).

0 commit comments

Comments
 (0)