Merge pull request #7822 from umbraco/netcore/feature/ab3671-webruntime-netstandard

NetCore: Make WebRuntime netstandard compatible
This commit is contained in:
Shannon Deminick
2020-03-23 15:09:02 +11:00
committed by GitHub
30 changed files with 69 additions and 99 deletions

View File

@@ -188,7 +188,7 @@ namespace Umbraco.Core.Scoping
if (ParentScope != null) return ParentScope.IsolatedCaches;
return _isolatedCaches ?? (_isolatedCaches
= new IsolatedCaches(type => new DeepCloneAppCache(new ObjectCacheAppCache(_typeFinder))));
= new IsolatedCaches(type => new DeepCloneAppCache(new ObjectCacheAppCache())));
}
}