MichaCo / CacheManager

CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.
http://cachemanager.michaco.net
Apache License 2.0
2.33k stars 456 forks source link

Supporting .NET Standard 2.1 #347

Closed jkatsiotis closed 3 years ago

jkatsiotis commented 3 years ago

Hi Michael,

Any plans to support .NET Standard 2.1?

MichaCo commented 3 years ago

why?

netstandard 2.1 is backwards compatible to netstandard 2.0. As long as I'm not using any APIs which exist only in the netstandard 2.1 API surface, I don't have to target that and netstandard 2.0 is totally fine. Anything released right now which targets netstandard 2.0 will also work with your libraries when you target netstandard 2.1...

But yes, I'm making changes as needed, see #340 for example.