Reverted non netcore related project amends in order to limit changes to those necessary for the netcore executable call stack.

This commit is contained in:
Andy Butland
2020-08-23 13:55:36 +02:00
parent 52a65caf88
commit 89b725ef28
80 changed files with 1073 additions and 365 deletions

View File

@@ -2,17 +2,16 @@
using System.IO;
using System.Text;
using Umbraco.Core.Configuration;
using Umbraco.Core.Configuration.Models;
using Umbraco.Core.IO;
namespace Umbraco.ModelsBuilder.Embedded
{
public sealed class ModelsGenerationError
{
private readonly ModelsBuilderConfig _config;
private readonly IModelsBuilderConfig _config;
private readonly IIOHelper _ioHelper;
public ModelsGenerationError(ModelsBuilderConfig config, IIOHelper ioHelper)
public ModelsGenerationError(IModelsBuilderConfig config, IIOHelper ioHelper)
{
_config = config;
_ioHelper = ioHelper;