* Forgotten v12 obsoletions * V13 obsoletions * Remove LegacyStaticServiceProvider and fix using statements of StaticServiceProvider * Remove obsolete ctors for v13 * More v13 obsoletions * UmbracoMapper obsoletion * UmbracoPipelineFilter obsoletion --------- Co-authored-by: nikolajlauridsen <nikolajlauridsen@protonmail.ch>
18 lines
455 B
C#
18 lines
455 B
C#
using Microsoft.Extensions.FileProviders;
|
|
|
|
namespace Umbraco.Cms.Core.Services;
|
|
|
|
public class LocalizedTextServiceSupplementaryFileSource
|
|
{
|
|
|
|
public LocalizedTextServiceSupplementaryFileSource(IFileInfo file, bool overwriteCoreKeys)
|
|
{
|
|
FileInfo = file ?? throw new ArgumentNullException(nameof(file));
|
|
OverwriteCoreKeys = overwriteCoreKeys;
|
|
}
|
|
|
|
public IFileInfo FileInfo { get; }
|
|
|
|
public bool OverwriteCoreKeys { get; }
|
|
}
|