Skip to content

v2.3.4

Compare
Choose a tag to compare
@jaredcnance jaredcnance released this 05 Jul 03:11
· 1564 commits to master since this release
271693a
  • #321 via #325: Add support for SourceLink. You can now debug into JADNC source code from Visual Studio and VS Code.
  • #297 via #324: Runtime attribute filtering. Although this is considered a non-breaking change, there is a known issue you may run into. Because of the differing semantics between some IoC containers, you may encounter issues where ResourceDefinition<T> cannot be resolved. This is because we do an optional lookup on the IServiceProvider interface. Any implementations of IServiceProvider.GetService(Type) that throw an exception for services not existing on the container could result in a failure. You should make sure that any custom implementations do not throw. This is a non-issue for anyone using Microsoft.Extensions.DependencyInjection.