more build errors in Core

This commit is contained in:
Nikolaj Geisle
2022-02-27 21:20:50 +01:00
parent e7b31a22be
commit d1cf640f2a
71 changed files with 281 additions and 226 deletions

View File

@@ -23,7 +23,7 @@ namespace Umbraco.Cms.Core.PublishedCache
/// <summary>
/// Gets the <see cref="IPublishedMemberCache"/>.
/// </summary>
IPublishedMemberCache Members { get; }
IPublishedMemberCache? Members { get; }
/// <summary>
/// Gets the <see cref="IDomainCache"/>.

View File

@@ -46,7 +46,7 @@ namespace Umbraco.Cms.Core.PublishedCache
// + using an initial reference cache level of .None ensures that everything will be
// cached at .Content level - and that reference cache level will propagate to all
// properties
public PublishedElement(IPublishedContentType contentType, Guid key, Dictionary<string, object> values, bool previewing)
public PublishedElement(IPublishedContentType contentType, Guid key, Dictionary<string, object?> values, bool previewing)
: this(contentType, key, values, previewing, PropertyCacheLevel.None, null)
{ }