I look and I don't see.
I have a solution with two projects -- project A (a library) and project B, which is main project and contains T4 text template.
What I did so far -- I added a reference in main project to project A. I included such line in template:
<#@ import namespace="MyProjectA" #>
Yet, there is still an error "Compiling transformation: The type or namespace name 'MyProjectA' could not be found (are you missing a using directive or an assembly reference?)"
Question: how can I reference to project A from text template?
Please note: I would like to reference a project within the solution, not the dll file on disk.