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.35k stars 456 forks source link

Nuget for CacheManager.SystemRuntimeCaching not targeting netstandard2.0 #313

Closed pergardebrink closed 4 years ago

pergardebrink commented 4 years ago

I was looking at a build warning I got when building against .NET Core claiming CacheManager.SystemRuntimeCaching was restored using .NET Framework.

It seems as the csproj for CacheManager.SystemRuntimeCaching builds a netstandard2.0 version, but it does not appear to have been published to the NuGet feed? Or am I missing something?

nflash commented 4 years ago

It seems the last publish of these packages into NuGet was in late 2018. @MichaCo Does this mean the library is no longer being actively maintained?

@pergardebrink for .net core why not use CacheManager.Microsoft.Extensions.Caching.Memory?

MichaCo commented 4 years ago

The beta packe supports netstandard 2.0. If you really have to use runtime caching, just use that for now, or use any other memory cache.

Regarding releases, there hasn't been any release lately because I did not have any time to add new features, hence no need to release anything.

robertcoltheart commented 3 years ago

Can this be moved to a non-beta release at least? We're facing the same issue as above.

MichaCo commented 3 years ago

Yeah when I find some time this year, there will be a release. I got some vacation this month, lets see ;)

robertcoltheart commented 3 years ago

Any update on this please?