<Environment Info>
Adpater pattern
LLBL Designer version 2.0.0.0
LLBLGen Pro .NET 2.0 ORM Support Classes  2.0.0.60904
.Net 2.0
VS.NET 2005
</Environment Info>
In ConstantsEnum generation template you guys are using HasTypedView. I want to use HasTypedList and I found from following link that you have support for same. 
http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=3489&HighLight=1
However When I included following TDL for generation in ConstantEnumTemplate I got improper generated string 
<Added TDL in ConstantsEnumTemplate>
<[If HasTypedList]>
	/// <summary>
	/// Index enum to get get collection of all the Typed Lists
	/// </summary>
	public enum TypedListType:int
	{<[ Foreach TypedList ]> 
		///<summary><[CurrentTypedListName]>TypedList</summary>
		<[CurrentTypedListName]>TypedList<[If HasFields]>,<[EndIf]><[ NextForeach ]>	
	}
<[EndIf]>
</Added TDL in ConstantsEnumTemplate>
<Generated code for above TDL>
IfHasTypedList]>
	/// <summary>
	/// Index enum to get get collection of all the Typed Lists
	/// </summary>
	public enum TypedListType:int
	{ 
		///<summary>CampaignTypedList</summary>
		CampaignTypedList, 
		///<summary>TrackingPixelTypedList</summary>
		TrackingPixelTypedList,	
	}
</Generated code for above TDL>
Any idea what wrong with it. I tried using HasTypedList and HasTypedView at different place. There's no problem with HasTypedView , however HasTypedList  generate this extra string "IfHasTypedList]>".
Thanks