Migrate custom Payment Providers
Follow the steps outlined below to migrate your custom payment providers to Umbraco Commerce.
dotnet remove package Umbraco.Commerce.Coredotnet add package Umbraco.Commerce.CoreLast updated
Was this helpful?
Follow the steps outlined below to migrate your custom payment providers to Umbraco Commerce.
Throughout the following steps, we will migrate custom payment providers used for Umbraco Commerce into Umbraco Commerce.
Remove any installed Umbraco Commerce packages
dotnet remove package Umbraco.Commerce.CoreInstall the Umbraco.Commerce packages for the payment providers.
dotnet add package Umbraco.Commerce.CoreUpdate any namespace references.
Update project framework to net7.0.
The final step in the migration is to update all abstract async methods exposed by the base class. It needs to be updated to accept an additional CancellationToken cancellationToken = default parameter as the final method argument. Your Integrated Development Environment (IDE) should provide feedback on all the methods that have been updated.
Last updated
Was this helpful?
Was this helpful?