AIT.Tools.VisualStudioTextTransform.VisualStudioTextTemplateHost.PossibleFullPaths C# (CSharp) Method

PossibleFullPaths() private method

private PossibleFullPaths ( string path ) : IEnumerable
path string
return IEnumerable
        private IEnumerable<string> PossibleFullPaths(string path)
        {
            // check relative to template file
            yield return Path.Combine(_templateDir, path);

            // First check if we have a full path here
            yield return path;
            // TODO: Add more (GAC?, configured by CLI?)
        }