| File: FileSourceStateMatcher.cs | Web Access |
| Project: src\sdk\src\TemplateEngine\Microsoft.TemplateEngine.Orchestrator.RunnableProjects\Microsoft.TemplateEngine.Orchestrator.RunnableProjects.csproj (Microsoft.TemplateEngine.Orchestrator.RunnableProjects) |
// 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.Core.Contracts; namespace Microsoft.TemplateEngine.Orchestrator.RunnableProjects { internal class FileSourceStateMatcher : IPathMatcher { private readonly FileDispositionStates _checkState; private readonly FileSourceHierarchicalPathMatcher _stateMatcher; internal FileSourceStateMatcher(FileDispositionStates checkState, FileSourceHierarchicalPathMatcher stateMatcher) { _checkState = checkState; _stateMatcher = stateMatcher; } public string Pattern => $"Composite matcher for disposition: {_checkState}"; public bool IsMatch(string path) { return _stateMatcher.Evaluate(path).Has(_checkState); } } }