diff --git a/Examples/Caching/Examples.Caching.MemoryCaching/Program.cs b/Examples/Caching/Examples.Caching.MemoryCaching/Program.cs index 0ba7438c..c0444595 100644 --- a/Examples/Caching/Examples.Caching.MemoryCaching/Program.cs +++ b/Examples/Caching/Examples.Caching.MemoryCaching/Program.cs @@ -23,7 +23,7 @@ { // Configure RCommon services.AddRCommon() - .WithJsonSerialization() + .WithJsonSerialization() // Distributed memory caching requires serialization .WithMemoryCaching(cache => { cache.Configure(x => diff --git a/Src/RCommon.Caching/CachingOptions.cs b/Src/RCommon.Caching/CachingOptions.cs index aa4677f1..6db67c81 100644 --- a/Src/RCommon.Caching/CachingOptions.cs +++ b/Src/RCommon.Caching/CachingOptions.cs @@ -8,5 +8,11 @@ namespace RCommon.Caching { public class CachingOptions { + public CachingOptions() + { + + } + + } } diff --git a/Src/RCommon.Caching/RCommon.Caching.csproj b/Src/RCommon.Caching/RCommon.Caching.csproj index f006da65..4a070226 100644 --- a/Src/RCommon.Caching/RCommon.Caching.csproj +++ b/Src/RCommon.Caching/RCommon.Caching.csproj @@ -3,10 +3,13 @@ net6.0;net8.0; - - - - + + + + + + + diff --git a/Src/RCommon.MemoryCache/RCommon.MemoryCache.csproj b/Src/RCommon.MemoryCache/RCommon.MemoryCache.csproj index 49d3ce5a..da2c97c2 100644 --- a/Src/RCommon.MemoryCache/RCommon.MemoryCache.csproj +++ b/Src/RCommon.MemoryCache/RCommon.MemoryCache.csproj @@ -8,6 +8,7 @@ +