Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't reference an assembly in a T4 template

I have the following code in a tester class in my main assembly, PocoGenerator. This assembly is supposed to use a T4 template to generate POCO's based on L2S entities in a referenced assembly (a project reference), DataObjects.

var assemblyName = "DataObjects"; var dataObjects = AppDomain.CurrentDomain.Load(new AssemblyName(assemblyName)); 

Try as I may, I cannot get T4 to find the DataObjects assembly. I have tried various forms of assembly directives, like:

<#@ assembly name="DataObjects" #> <#@ assembly name="DataObjects, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" #> 

to no avail. The code above works in the tester class, but not in the template. What am I doing wrong?

ADDED: I have resolved this issue by using the absolute path to the assembly in bot places I reference it, the directive as well as the class feature block, i.e.

<#@ assembly name="C:\Development\PocoGenerator\DataObjects\bin\Debug\DataObjects.dll" #> 

and

var sourceAssembly = Assembly.LoadFile(@"C:\Development\PocoGenerator\DataObjects\bin\Debug\DataObjects.dll"); 

But I really don't like this, as I would like to use this template in various projects, and I just plain hate duplication, especially of magic strings.

like image 569
ProfK Avatar asked Aug 08 '10 14:08

ProfK


People also ask

What is assembly reference?

Reference assemblies are usually distributed with the Software Development Kit (SDK) of a particular platform or library. Using a reference assembly enables developers to build programs that target a specific library version without having the full implementation assembly for that version.

What is the purpose of using T4 templates?

Design-time T4 text templates let you generate program code and other files in your Visual Studio project.


1 Answers

<#@ assembly name="$(ProjectDir)bin\Debug\ProofOfConcept.dll" #> 

Happy Coding!

like image 151
Eric Avatar answered Sep 20 '22 19:09

Eric