I'm creating a multi-project template that has a solution as the root folder. I can't find out how to include the name of the solution in the namespace of the project.
$safeprojectname$
returns the name of the internal project of the solution.
According to the docs $specifiedSolutionName$
should be replaced by either the solution name or empty.
Assuming the solution name is mySolutionName
and the project name is myProjectName
this line :
namespace $specifiedSolutionName$.$safeprojectname$
should return
namespace mySolutionName.myProjectName
The parameter isn't replaced at all though and the result is :
namespace $specifiedSolutionName$.myProjectName
How can I fix that?