Exemple #1
0
        private async Task <string> GetTemplateContentAsync(string templateName, XDocument parameters)
        {
            var    templatePathTask = applicationSettingsService.GetTemplatePathAsync(templateName);
            string compileResult    = string.Empty;

            if (parameters != null)
            {
                string path = await templatePathTask;
                if (!string.IsNullOrEmpty(path))
                {
                }
            }
            return(compileResult);
        }