AIT.Tools.VisualStudioTextTransform.VisualStudioTextTemplateHost.PossibleFullPaths C# (CSharp) 메소드

PossibleFullPaths() 개인적인 메소드

private PossibleFullPaths ( string path ) : IEnumerable
path string
리턴 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?)
        }