DefaultContainerBuilder is now an internal class #715
Unanswered
jeffreyrjones-tc
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a reason that DefaultContainerBuilder is now an internal class? Trying to create a custom service provider and need access to the DefaultContainerBuilder.
In 8.0.X it is defined as...
namespace Microsoft.AspNetCore.OData.Abstracts
{
///
/// The default container builder implementation based on the Microsoft dependency injection framework.
///
internal class DefaultContainerBuilder : IContainerBuilder
{
In 7.5.X it was defined as...
namespace Microsoft.AspNet.OData
{
///
/// The default container builder implementation based on the Microsoft dependency injection framework.
///
public class DefaultContainerBuilder : IContainerBuilder
{
private readonly IServiceCollection services = new ServiceCollection();
Beta Was this translation helpful? Give feedback.
All reactions