pull/1363/head
Armağan Ünlü 6 years ago
commit b7502651c6

@ -55,11 +55,6 @@ namespace Volo.Abp.Cli.ProjectModification
return "[DependsOn(typeof(" + moduleName + "))]" + Environment.NewLine + " ";
}
protected virtual string GetUsingStatement(string nameSpace)
{
return "using " + nameSpace + ";";
}
protected virtual void ParseModuleNameAndNameSpace(string module, out string nameSpace, out string moduleName)
{
var words = module?.Split('.');

@ -24,7 +24,7 @@ namespace Volo.Abp.Cli.ProjectModification
return fileContent.Insert(index, usingStatement);
}
protected string GetUsingStatement(string nameSpace)
protected virtual string GetUsingStatement(string nameSpace)
{
return Environment.NewLine + "using " + nameSpace + ";";
}

Loading…
Cancel
Save