문제

I'm using the T4 TextTemplating service from a VSPackage:

var t4 = this.GetService(typeof(STextTemplating)) as ITextTemplating;

Normally if a template is referencing types in an external assembly you can use the assembly directive. However, I don't know the assembly until runtime, so is there anyway of adding assembly references to the T4 engine programmatically?

도움이 되었습니까?

해결책

I think the following may be a solution...

Write a custom host, see http://msdn.microsoft.com/en-us/library/bb126519.aspx

Before running the engine in that custom host, load the required assemblies using LoadFrom, see http://msdn.microsoft.com/en-us/library/1009fa28.aspx for details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top