Example #1
0
        private String resolvePath(String templateName)
        {
            var fullPath = templateLoader.GetPath();

            templateName = templateName.Replace("/", "\\");
            var templatePath = (fullPath + templateName).Replace("\\\\", "\\");

            return(templatePath);
        }