I am trying to create a runtime text template for a .net core application, but I don't see TextTemplatingFilePreprocessor as a custom tool options in the properties pane. All I want to do is create a text template that will generate a text file with variables populated based on some input from the user
SampleMethod(string parameter1, string parameter2)
{
string filetext = ProcessTemplate(string template, var parameters)
}