Skip to content

Commit

Permalink
Merge pull request #26 from pfpack/release/v2.1.0
Browse files Browse the repository at this point in the history
release/v2.1.0
  • Loading branch information
andreise authored Nov 28, 2023
2 parents 3b7cd77 + 4eb2363 commit cba14d8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# PrimeFuncPack Dependency Registry
PrimeFuncPack Dependency Registry is a library for .NET providing the dependency registrar targeted to both usual services and dependency trees built by PrimeFuncPack Dependency to register the dependencies in the .NET dependency injection mechanism.
PrimeFuncPack Dependency Registry is a library for .NET providing a dependency registrar intended for registering services, including dependency trees built by PrimeFuncPack Dependency, in the .NET dependency injection mechanism.
2 changes: 1 addition & 1 deletion docs/dependency-registry/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# PrimeFuncPack Dependency Registry
PrimeFuncPack Dependency Registry is a library for .NET providing the dependency registrar targeted to both usual services and dependency trees built by PrimeFuncPack Dependency to register the dependencies in the .NET dependency injection mechanism.
PrimeFuncPack Dependency Registry is a library for .NET providing a dependency registrar intended for registering services, including dependency trees built by PrimeFuncPack Dependency, in the .NET dependency injection mechanism.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ public sealed partial class DependencyRegistrar<T>
private readonly Func<IServiceProvider, T> resolver;

internal DependencyRegistrar(IServiceCollection services, Func<IServiceProvider, T> resolver)
{
this.services = services;
this.resolver = resolver;
}
=>
(this.services, this.resolver) = (services, resolver);

public static DependencyRegistrar<T> Create(IServiceCollection services, Func<IServiceProvider, T> resolver)
=>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
<Company>pfpack</Company>
<Authors>Andrei Sergeev, Pavel Moskovoy</Authors>
<Copyright>Copyright © 2020-2023 Andrei Sergeev, Pavel Moskovoy</Copyright>
<Description>PrimeFuncPack Dependency Registry is a library for .NET providing the dependency registrar targeted to both usual services and dependency trees built by PrimeFuncPack Dependency to register the dependencies in the .NET dependency injection mechanism.</Description>
<Description>PrimeFuncPack Dependency Registry is a library for .NET providing a dependency registrar intended for registering services, including dependency trees built by PrimeFuncPack Dependency, in the .NET dependency injection mechanism.</Description>
<RootNamespace>PrimeFuncPack</RootNamespace>
<AssemblyName>PrimeFuncPack.DependencyRegistry</AssemblyName>
<Version>2.1.0-rc.1</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit cba14d8

Please sign in to comment.