1 write to Instructions
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
LocalizationModelDeserializer.cs (1)
149Instructions = instructions,
6 references to Instructions
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (6)
ConfigModel\PostActionModel.cs (2)
170bool exactIdMatch = manualInstruction.Id != null && locModel.Instructions.TryGetValue(manualInstruction.Id, out localizedInstruction); 171bool defaultIdMatch = manualInstruction.Id == null && ManualInstructionInfo.Count == 1 && locModel.Instructions.TryGetValue(DefaultIdForSingleManualInstruction, out localizedInstruction);
Validation\MandatoryLocalizationValidationFactory.cs (4)
46postActionLocModel.Instructions.ContainsKey(PostActionModel.DefaultIdForSingleManualInstruction); 53int unusedManualInstructionLocs = postActionLocModel.Instructions.Count; 56if (instruction.Id != null && postActionLocModel.Instructions.ContainsKey(instruction.Id)) 67postActionLocModel.Instructions.Keys.Where(k => !postAction.ManualInstructionInfo.Any(i => i.Id == k)));