Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Referencing a 3rd party DLL when generating code using T4 templates

I'm trying to write a T4 template that needs to log into FB to scrape the docs. To do this i need to reference a 3rd party dll. Can this be done and if so, how?


1 Answers

I assume you mean you want the T4 template to use the DLL when generating code.

<#@ assembly name="$(SolutionDir)thirdparty.dll" #>

like image 185
George Duckett Avatar answered Feb 03 '26 00:02

George Duckett