1 implementation of Process
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ValueForms\BaseValueFormFactory.cs (1)
43public abstract string Process(string value, IReadOnlyDictionary<string, IValueForm> otherForms);
4 references to Process
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (4)
Macros\ProcessValueFormMacro.cs (1)
30string? result = config.Form.Process(working.ToString(), config.Forms);
RunnableProjectConfig.cs (2)
300string processedFileReplacement = valueForm.Process(symbol.FileRename!, ConfigurationModel.Forms); 383string processedReplacement = valueForm.Process(baseValueSymbol.Replaces!, ConfigurationModel.Forms);
ValueForms\ChainValueFormFactory.cs (1)
25result = otherForms[step].Process(result, otherForms);