2 writes to Id
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
ConfigModel\ManualInstructionModel.cs (2)
14
Id
= id;
20
Id
= id;
7 references to Id
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (7)
ConfigModel\PostActionModel.cs (3)
170
bool exactIdMatch = manualInstruction.
Id
!= null && locModel.Instructions.TryGetValue(manualInstruction.
Id
, out localizedInstruction);
171
bool defaultIdMatch = manualInstruction.
Id
== null && ManualInstructionInfo.Count == 1 && locModel.Instructions.TryGetValue(DefaultIdForSingleManualInstruction, out localizedInstruction);
Validation\MandatoryLocalizationValidationFactory.cs (4)
45
bool instructionUsesDefaultKey = postAction.ManualInstructionInfo.Count == 1 && postAction.ManualInstructionInfo[0].
Id
== null &&
56
if (instruction.
Id
!= null && postActionLocModel.Instructions.ContainsKey(instruction.
Id
))
67
postActionLocModel.Instructions.Keys.Where(k => !postAction.ManualInstructionInfo.Any(i => i.
Id
== k)));