| File: IEngineConfig.cs | Web Access |
| Project: src\sdk\src\TemplateEngine\Microsoft.TemplateEngine.Core.Contracts\Microsoft.TemplateEngine.Core.Contracts.csproj (Microsoft.TemplateEngine.Core.Contracts) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.Logging; using Microsoft.TemplateEngine.Abstractions; namespace Microsoft.TemplateEngine.Core.Contracts { public interface IEngineConfig { ILogger Logger { get; } IReadOnlyList<string> LineEndings { get; } string VariableFormatString { get; } IVariableCollection Variables { get; } IReadOnlyList<string> Whitespaces { get; } IDictionary<string, bool> Flags { get; } } }