You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// 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();
}
}
/// 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/.
The text was updated successfully, but these errors were encountered:
Was as of 3.2
namespace Ninject.Extensions.Conventions.Syntax
{
///
/// The syntax to specify that none public types shall be included.
///
public interface IIncludingNonePublicTypesSyntax
{
///
/// 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
{
///
/// The fluent syntax.
ISelectSyntax IncludingNonPublicTypes();
}
}
I understand the reason for the change, however it breaks https://semver.org/.
The text was updated successfully, but these errors were encountered: