This commit is contained in:
javitosanchez 2017-03-08 12:21:27 +01:00
Родитель fc1ae1d8f7 555b062863
Коммит 54304293c4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -177,13 +177,13 @@ namespace Microsoft.Templates.Core
var result = GetValueFromTag(ti, TagPrefix + "multipleInstance");
if (!string.IsNullOrEmpty(result))
{
bool boolResult;
bool boolResult = true;
if (Boolean.TryParse(result, out boolResult))
{
return boolResult;
}
}
return false;
return true;
}
private static string GetConfigDir(ITemplateInfo ti)