Was as of 3.2
namespace Ninject.Extensions.Conventions.Syntax
{
///
/// The syntax to specify that none public types shall be included.
///
public interface IIncludingNonePublicTypesSyntax
{
///
Specifies that none public types shall be included.
/// The fluent syntax.
ISelectSyntax IncludingNonePublicTypes();
}
}
Is now as of 3.3
namespace Ninject.Extensions.Conventions.Syntax
{
///
/// The syntax to specify that none public types shall be included.
///
public interface IIncludingNonPublicTypesSyntax
{
///
Specifies that none public types shall be included.
/// The fluent syntax.
ISelectSyntax IncludingNonPublicTypes();
}
}
I understand the reason for the change, however it breaks https://semver.org/.