Hi I need to add the assembly of an an existing project in my solution in my T4 Template file. The problem is that my T4 template is in a project called Project.WebApi and the c
In case your project with T4 template has direct reference to the project, you can use $(TargetDir)
<#@ assembly name="$(TargetDir)Project.Common.WebApi.dll" #>