Fixed based on review comments

Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-09-14 21:27:31 +02:00
parent dc8933b6b9
commit ce2da18304
14 changed files with 60 additions and 168 deletions

View File

@@ -1,4 +1,6 @@
namespace Umbraco.Core.Configuration.Models
using System.IO;
namespace Umbraco.Core.Configuration.Models
{
public class ImagingCacheSettings
{
@@ -8,6 +10,6 @@
public uint CachedNameLength { get; set; } = 8;
public string CacheFolder { get; set; } = "../App_Data/Cache";
public string CacheFolder { get; set; } = Path.Combine("~", "Umbraco", "Cache");
}
}