Hi,
In my t4 template i try to reference his projet.
If i try like this :
<#@ assembly name="C:\Documents and Settings\user.xx\Mes documents\Visual Studio 2008\Projects\SilverlightTutorials\ProjectNameX\Bin\Debug\ProjectNameX.dll"
#>
<#@ import namespace="ProjectNameX.MyClass"
#>
After the first T4 generation, i can't build my project : dll can't be replaced, the T4 template use it.
Is there anyway to do this unless copy my dll in another folder and reference it ?
My goal is to do a "typeof(MyClass).GetEvents()" instruction in my T4 template where "MyClass" is a part of a service reference generated by VS 2008.
thanks