|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.TemplateEngine.Abstractions;
namespace Microsoft.TemplateEngine.Core.Contracts
{
public interface IGlobalRunSpec
{
IReadOnlyList<IPathMatcher> Exclude { get; }
IReadOnlyList<IPathMatcher> Include { get; }
IReadOnlyList<IPathMatcher> CopyOnly { get; }
IReadOnlyList<IOperationProvider> Operations { get; }
IVariableCollection RootVariableCollection { get; }
IReadOnlyList<KeyValuePair<IPathMatcher, IRunSpec>> Special { get; }
IReadOnlyList<string> IgnoreFileNames { get; }
bool TryGetTargetRelPath(string sourceRelPath, out string targetRelPath);
}
}
|