ikyriak / IdempotentAPI

A .NET library that handles the HTTP write operations (POST and PATCH) that can affect only once for the given request data and idempotency-key by using an ASP.NET Core attribute (filter).
MIT License
240 stars 35 forks source link

Framework 4.8 support #79

Open arc95 opened 3 weeks ago

arc95 commented 3 weeks ago

Thanks for writing this library. We have a legacy ASP.NET Framework 4.8 app that needs idempotent logic. Is there a version of this library for Framework?

ikyriak commented 3 weeks ago

Hello @arc95,

The IdempotentAPI targets .NET Standard 2.0. So, it is compatible with the .NET Framework. Could you send me additional information about your .NET Framework project (WebForms, MVC, etc) or, ideally, a small example project where you would like to apply idempotency?

ikyriak commented 3 weeks ago

Update: Currently, the IdempotentAPI does not support .NET Framework because it depends on .NET Core libraries. I will keep the issue open to check how we can support it.

arc95 commented 2 weeks ago

Thanks, @ikyriak. This is an ASP.NET MVC 4.8 app. And it makes sense that it's not compatible; most libraries are written for Core now.