How can I include file relatively to project root? Somthing like <# @include file=\"~/Infrastructure/Manager.ttinclude\" #>
<# @include file=\"~/Infrastructure/Manager.ttinclude\" #>
You should use $(ProjectDir)
$(ProjectDir)
<#@ include file="$(ProjectDir)\Infrastructure\Manager.ttinclude" #>
You can also use $(SolutionDir) for the Solution root.
$(SolutionDir)