1 instantiation of ManualInstructionModel
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ConfigModel\PostActionModel.cs (1)
207
results.Add(new
ManualInstructionModel
(id, text, condition));
10 references to ManualInstructionModel
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (10)
ConfigModel\PostActionModel.cs (8)
22
: this(new Dictionary<string, string>(), new List<
ManualInstructionModel
>()) { }
24
internal PostActionModel(IReadOnlyDictionary<string, string> args, IReadOnlyList<
ManualInstructionModel
> manualInstructions)
77
public IReadOnlyList<
ManualInstructionModel
> ManualInstructionInfo { get; internal init; } = new List<
ManualInstructionModel
>();
144
IReadOnlyList<
ManualInstructionModel
> manualInstructions = LoadManualInstructionsFromJArray(action.Get<JsonArray>("ManualInstructions"), validationEntries);
167
foreach (
var
manualInstruction in ManualInstructionInfo)
180
private static IReadOnlyList<
ManualInstructionModel
> LoadManualInstructionsFromJArray(JsonArray? jArray, List<IValidationEntry> validationEntries)
182
var results = new List<
ManualInstructionModel
>();
PostAction.cs (1)
57
foreach (
ManualInstructionModel
modelInstruction in model.ManualInstructionInfo)
Validation\MandatoryLocalizationValidationFactory.cs (1)
54
foreach (
var
instruction in postAction.ManualInstructionInfo)