mkus
mkus

Reputation: 3497

Does Polly support net 4.6.1?

Does Polly support .net 4.6.1? Can I use it in my own 4.6.1 c# project safely?

According to the documentation now, it supports 4.5. But I want to use it in my own 4.6.1 runtime, is it possible?

Upvotes: 1

Views: 1491

Answers (1)

hiro77
hiro77

Reputation: 412

Absolutely! Polly targets .NET Standard 1.1, which is the lowest .NET Standard version we are able to target while covering all of the .NET APIs that Polly uses. What this means, is that Polly is compatible with as many .NET versions as possible, across multiple platforms, from 4.5 onward. As noted in the official .NET Standard docs, one of the primary versioning rules is that they are additive, meaning higher versions incorporate all APIs from previous versions, and there are no breaking changes between versions.

I have personally used the latest version of Polly in a .NET 4.6.1 project with no issues.

Upvotes: 4

Related Questions