Moves AppCaches and cache refresher bases

This commit is contained in:
Shannon
2019-11-07 19:56:49 +11:00
parent 3b862f7e3a
commit 327ea04d98
5 changed files with 1 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ namespace Umbraco.Core.Serialization
_settings.NullValueHandling = NullValueHandling.Include;
_settings.ReferenceLoopHandling = ReferenceLoopHandling.Serialize;
_settings.TypeNameHandling = TypeNameHandling.Objects;
_settings.TypeNameHandling = TypeNameHandling.Objects; // FIXME: Is this intended?? This is a security issue
_settings.ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor;
}

View File

@@ -124,19 +124,16 @@
<DependentUpon>Constants.cs</DependentUpon>
</Compile>
-->
<Compile Include="Cache\CacheRefresherBase.cs" />
<Compile Include="Cache\DefaultRepositoryCachePolicy.cs" />
<Compile Include="Cache\FastDictionaryAppCacheBase.cs" />
<Compile Include="Cache\ObjectCacheAppCache.cs" />
<Compile Include="Compose\AuditEventsComponent.cs" />
<Compile Include="Cache\AppCaches.cs" />
<Compile Include="Cache\CacheRefresherCollection.cs" />
<Compile Include="Cache\CacheRefresherCollectionBuilder.cs" />
<Compile Include="Cache\FastDictionaryAppCache.cs" />
<Compile Include="Cache\FullDataSetRepositoryCachePolicy.cs" />
<Compile Include="Cache\HttpRequestAppCache.cs" />
<Compile Include="Cache\WebCachingAppCache.cs" />
<Compile Include="Cache\JsonCacheRefresherBase.cs" />
<Compile Include="Cache\PayloadCacheRefresherBase.cs" />
<Compile Include="Cache\RepositoryCachePolicyBase.cs" />
<Compile Include="Cache\SingleItemsOnlyRepositoryCachePolicy.cs" />