1 implementation of Args
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
PostAction.cs (1)
30public IReadOnlyDictionary<string, string> Args { get; } = new Dictionary<string, string>();
23 references to Args
Microsoft.TemplateEngine.Cli (23)
PostActionDispatcher.cs (6)
186if (action.Args != null && action.Args.TryGetValue("executable", out string? executable)) 188action.Args.TryGetValue("args", out string? commandArgs); 253if (action.Args != null && action.Args.TryGetValue("executable", out string? executable)) 255action.Args.TryGetValue("args", out string? commandArgs);
PostActionProcessors\AddJsonPropertyPostActionProcessor.cs (9)
86if (!action.Args.TryGetValue(JsonFileNameArgument, out string? jsonFileName)) 92if (!bool.TryParse(action.Args.GetValueOrDefault(DetectRepoRoot, "false"), out bool detectRepoRoot)) 98if (!bool.TryParse(action.Args.GetValueOrDefault(IncludeAllDirectoriesInSearch, "true"), out bool includeAllDirectories)) 106if (!bool.TryParse(action.Args.GetValueOrDefault(IncludeAllParentDirectoriesInSearch, "false"), out bool includeAllParentDirectories)) 122if (!bool.TryParse(action.Args.GetValueOrDefault(AllowFileCreationArgument, "false"), out bool createFile)) 184if (!bool.TryParse(action.Args.GetValueOrDefault(AllowPathCreationArgument, "false"), out bool createPath)) 306action.Args.TryGetValue(ParentPropertyPathArgument, out string? parentProperty); 307action.Args.TryGetValue(NewJsonPropertyNameArgument, out string? newJsonPropertyName); 308action.Args.TryGetValue(NewJsonPropertyValueArgument, out string? newJsonPropertyValue);
PostActionProcessors\ChmodPostActionProcessor.cs (1)
20foreach (KeyValuePair<string, string> entry in actionConfig.Args)
PostActionProcessors\InstructionDisplayPostActionProcessor.cs (3)
21if (actionConfig.Args != null && actionConfig.Args.TryGetValue("executable", out string? executable)) 23actionConfig.Args.TryGetValue("args", out string? commandArgs);
PostActionProcessors\ProcessStartPostActionProcessor.cs (4)
19if (!actionConfig.Args.TryGetValue("executable", out string? executable) || string.IsNullOrWhiteSpace(executable)) 24actionConfig.Args.TryGetValue("args", out string? args); 29if (actionConfig.Args.TryGetValue("redirectStandardOutput", out string? redirectStandardOutputString) 37if (actionConfig.Args.TryGetValue("redirectStandardError", out string? redirectStandardErrorString)