本文整理汇总了C#中ITemplate.GetSetting方法的典型用法代码示例。如果您正苦于以下问题:C# ITemplate.GetSetting方法的具体用法?C# ITemplate.GetSetting怎么用?C# ITemplate.GetSetting使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ITemplate
的用法示例。
在下文中一共展示了ITemplate.GetSetting方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateClassOutputFilePath
public static string CreateClassOutputFilePath(string objName, Type objType, ITemplate template, string outputFolder)
{
string fileName = objName ?? objType.Name;
string nameSuffix = template.GetVariable(SpecialVariable.FileNameSuffix) ?? template.GetSetting(SpecialVariable.FileNameSuffix);
string extension = template.GetSetting(SpecialVariable.FileExtension) ?? DefaultFileExtension;
string subdir = GenUtil.GetOutputSubdirectoryVariable(template);
string filePath;
if (string.IsNullOrEmpty(subdir))
filePath = string.Format("{0}{1}{2}.{3}", outputFolder, fileName, nameSuffix, extension);
else
filePath = string.Format("{0}{1}\\{2}{3}.{4}", outputFolder, subdir, fileName, nameSuffix, extension);
return filePath;
}
示例2: GenerateSingleFileForTemplate
private string GenerateSingleFileForTemplate(ITemplate template, object[] bizObjects)
{
string fileNameWithExt = template.GetVariable(SpecialVariable.SingleFile) ?? template.GetSetting(SpecialVariable.SingleFile);
string filePath = GenUtil.CreateSingleFilePathForTemplate(template, this.outputFolder, fileNameWithExt);
using (StreamWriter codeOutput = new StreamWriter(filePath, /*overwrite existing file*/ false, Encoding.UTF8))
{
template.Run(codeOutput, bizObjects);
}
return fileNameWithExt;
}
示例3: ShouldWriteToSingleFile
public static bool ShouldWriteToSingleFile(ITemplate template)
{
return !string.IsNullOrEmpty(template.GetVariable(SpecialVariable.SingleFile)) || !string.IsNullOrEmpty(template.GetSetting(SpecialVariable.SingleFile));
}