Breaking Changes
- Dropped support for .NET Core 3.1 & 5.0, supported targets are now .NET 6 & 7.
- The package now registers the recently added
IManagementApiClient
interface instead of the ManagementApiClient
class. Please update your class dependencies accordingly.
public class MyAuth0Service : IAuth0Service
{
- private readonly ManagementApiClient _managementApiClient;
- public MyAuth0Service(ManagementApiClient managementApiClient)
{
_managementApiClient = managementApiClient;
}
public class MyAuth0Service : IAuth0Service
{
+ private readonly IManagementApiClient _managementApiClient;
+ public MyAuth0Service(IManagementApiClient managementApiClient)
{
_managementApiClient = managementApiClient;
}