Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit ec1d47a

Browse files
authored
Merge pull request #25 from akunzai/dependabot/nuget/Spring.Core-3.0.0
Bump Spring.Core from 2.0.1 to 3.0.0
2 parents 4d20b85 + e3a6552 commit ec1d47a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

samples/SampleShared/SampleShared.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-
<PackageReference Include="Spring.Core" Version="2.0.1" />
9+
<PackageReference Include="Spring.Core" Version="3.0.0" />
1010
<PackageReference Include="System.Text.Encodings.Web" Version="5.0.1" />
1111
</ItemGroup>
1212

src/Spring.Extensions.DependencyInjection/Internal/SpringServiceProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private object LookupService(IApplicationContext context, Type serviceType)
127127
return service;
128128
}
129129

130-
private static IEnumerable<string> GetPerfectTypeMatchedObjectNames(IApplicationContext context, Type serviceType, IList<string> objectNames = null)
130+
private static IEnumerable<string> GetPerfectTypeMatchedObjectNames(IApplicationContext context, Type serviceType, IReadOnlyList<string> objectNames = null)
131131
{
132132
objectNames ??= context.GetObjectNamesForType(serviceType);
133133
var factory = ((IConfigurableApplicationContext)context).ObjectFactory;

src/Spring.Extensions.DependencyInjection/Spring.Extensions.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
12-
<PackageReference Include="Spring.Core" Version="2.0.1" />
12+
<PackageReference Include="Spring.Core" Version="3.0.0" />
1313
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
1414
</ItemGroup>
1515

0 commit comments

Comments
 (0)