-
Notifications
You must be signed in to change notification settings - Fork 377
/
Copy pathIEngineEnvironmentSettings.cs
37 lines (32 loc) · 1.18 KB
/
IEngineEnvironmentSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.TemplateEngine.Abstractions
{
/// <summary>
/// Represents template engine environment settings.
/// </summary>
public interface IEngineEnvironmentSettings : IDisposable
{
/// <summary>
/// Manages template cache and template engine settings.
/// </summary>
[Obsolete("ISettingsLoader is obsolete.")]
ISettingsLoader SettingsLoader { get; }
/// <summary>
/// Gets host-specific properties, loggers and provides access to file system.
/// </summary>
ITemplateEngineHost Host { get; }
/// <summary>
/// Provides access to environment settings, such as environment variables.
/// </summary>
IEnvironment Environment { get; }
/// <summary>
/// Gets main file paths used by template engine.
/// </summary>
IPathInfo Paths { get; }
/// <summary>
/// Component manager for this instance of settings.
/// </summary>
IComponentManager Components { get; }
}
}