1 type derived from DependentValueFormFactory
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ValueForms\ChainValueFormFactory.cs (1)
8
internal class ChainValueFormFactory :
DependentValueFormFactory
<IReadOnlyList<string>>
3 references to DependentValueFormFactory
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (3)
ValueForms\BaseValueFormFactory.cs (1)
10
/// When implementing a value form inherit from <see cref="ActionableValueFormFactory"/> or <see cref="ConfigurableValueFormFactory{T}"/> or <see cref="
DependentValueFormFactory
{T}"/> instead.
ValueForms\DependentValueFormFactory.cs (2)
43
private readonly
DependentValueFormFactory
<T> _factory;
46
internal DependentValueForm(string name,
DependentValueFormFactory
<T> factory, T? configuration) : base(name, factory.Identifier)