Do you know any Code Generation Tool (not KotlinPo...
# announcements
d
Do you know any Code Generation Tool (not KotlinPoet) looks more like C# TT (T4) files, example:
Copy code
<#@ output extension=".txt" #>  
<#@ assembly name="System.Xml" #>  
<#  
 System.Xml.XmlDocument configurationData = ...; // Read a data file here.  
#>  
namespace Fabrikam.<#= configurationData.SelectSingleNode("jobName").Value #>  
{  
  ... // More code here.   
}