2 writes to Id
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
ConfigModel\ManualInstructionModel.cs (2)
14Id = id; 20Id = id;
7 references to Id
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (7)
ConfigModel\PostActionModel.cs (3)
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)
45bool instructionUsesDefaultKey = postAction.ManualInstructionInfo.Count == 1 && postAction.ManualInstructionInfo[0].Id == null && 56if (instruction.Id != null && postActionLocModel.Instructions.ContainsKey(instruction.Id)) 67postActionLocModel.Instructions.Keys.Where(k => !postAction.ManualInstructionInfo.Any(i => i.Id == k)));