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