1 instantiation of ManualInstructionModel
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ConfigModel\PostActionModel.cs (1)
207results.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>()) { } 24internal PostActionModel(IReadOnlyDictionary<string, string> args, IReadOnlyList<ManualInstructionModel> manualInstructions) 77public IReadOnlyList<ManualInstructionModel> ManualInstructionInfo { get; internal init; } = new List<ManualInstructionModel>(); 144IReadOnlyList<ManualInstructionModel> manualInstructions = LoadManualInstructionsFromJArray(action.Get<JsonArray>("ManualInstructions"), validationEntries); 167foreach (var manualInstruction in ManualInstructionInfo) 180private static IReadOnlyList<ManualInstructionModel> LoadManualInstructionsFromJArray(JsonArray? jArray, List<IValidationEntry> validationEntries) 182var results = new List<ManualInstructionModel>();
PostAction.cs (1)
57foreach (ManualInstructionModel modelInstruction in model.ManualInstructionInfo)
Validation\MandatoryLocalizationValidationFactory.cs (1)
54foreach (var instruction in postAction.ManualInstructionInfo)