LightInject.Microsoft.DependencyInjection icon indicating copy to clipboard operation
LightInject.Microsoft.DependencyInjection copied to clipboard

Implements Microsoft.Extensions.DependencyInjection.Abstraction

Results 15 LightInject.Microsoft.DependencyInjection issues
Sort by recently updated
recently updated
newest added

The DefaultServiceSelector value changed from (v3.6.3) `options.DefaultServiceSelector = serviceNames => serviceNames.SingleOrDefault(string.IsNullOrWhiteSpace) ?? serviceNames.Last();` to (v3.7.0) `options.DefaultServiceSelector = serviceNames => serviceNames.Last();` In the following scenario (dotnet7 asp.net core api project), the...

Hello, We have just noticed something odd after updating to `LightInject.Microsoft.DependencyInjection` from `v3.6.3` to `v3.7.1` (v3.7.0 is also affected): > We can no longer have multiple service registrations for a...

Currently we are migrating legacy app to Asp.Net Core 2.2 as the first step, so we are using `LightInject.Microsoft.AspNetCore.Hosting`. There are several interceptors that access current scope, for example transaction...

Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 1.3.0 to 3.1.0. Release notes Sourced from coverlet.collector's releases. v3.1.0 141 adds performance improvements to coverage tracker for multi-threaded scenarios a189fc26ea35b8ad77bd3be2bceac5c2996149a8 replaces Jil with JSON.NET for JSON...

dependencies

Bumps [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) from 3.1.9 to 5.0.2. Release notes Sourced from Microsoft.Extensions.DependencyInjection's releases. .NET 5.0.2 Release Notes Install Instructions Repos Core .NET 5.0.1 Release Notes Install Instructions Repo Core .NET 5...

dependencies

Bumps [Microsoft.Extensions.DependencyInjection.Specification.Tests](https://github.com/aspnet/Extensions) from 3.1.9 to 3.1.17. Release notes Sourced from Microsoft.Extensions.DependencyInjection.Specification.Tests's releases. .NET Core 3.1.17 Release .NET Core 3.1.16 Release .NET Core 3.1.15 Release .NET Core 3.1.14 Release .NET Core...

dependencies

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.0 to 16.10.0. Release notes Sourced from Microsoft.NET.Test.Sdk's releases. v16.10.0 See the release notes here. v16.10.0-release-20210429-01 See the release notes here. v16.10.0-release-20210422-02 See the release notes here....

dependencies

Bumps [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) from 0.12.1 to 0.13.0. Commits 6dcf438 Set library version: 0.13.0 3960601 Prepare v0.13.0 changelog 2a2c0c3 Update copyright year (2021) 5c74d54 Bump docfx version: 2.51->2.57.2 85db957 Bump Cake version:...

dependencies

The LightInjectServiceProvider shows a different bahvior than the Microsoft.Extensions.DependencyInjection.ServiceProvider regarding resolving IServiceProvider. I've created a test case which hopefully clarifies the desired behavior: ``` using System; using LightInject; using LightInject.Microsoft.DependencyInjection;...