38 references to Args
dotnet (15)
Commands\New\PostActions\DotnetAddPostActionProcessor.cs (7)
37IReadOnlyList<string>? projectsToProcess = GetConfiguredFiles(action.Args, creationEffects, "targetFiles", outputBasePath); 43if (action.Args.TryGetValue("projectFileExtensions", out string? projectFileExtensions)) 70projectsToProcess = FindExistingTargetFiles(environment.Host.FileSystem, action.Args, outputBasePath); 116if (actionConfig.Args == null || !actionConfig.Args.TryGetValue("reference", out string? referenceToAdd)) 122if (!actionConfig.Args.TryGetValue("referenceType", out string? referenceType)) 139actionConfig.Args.TryGetValue("version", out string? version);
Commands\New\PostActions\DotnetRestorePostActionProcessor.cs (1)
21IEnumerable<string> targetFiles = GetConfiguredFiles(actionConfig.Args, creationEffects, "files", outputBasePath);
Commands\New\PostActions\DotnetSlnPostActionProcessor.cs (7)
34if (actionConfig.Args != null && actionConfig.Args.TryGetValue("primaryOutputIndexes", out string? projectIndexes)) 77IReadOnlyList<string> projectFiles = GetConfiguredFiles(action.Args, creationEffects, "projectFiles", outputBasePath, (path) => Path.GetExtension(path).EndsWith("proj", StringComparison.OrdinalIgnoreCase)); 138if (actionConfig.Args != null && actionConfig.Args.TryGetValue("solutionFolder", out string? solutionFolder)) 147if (actionConfig.Args != null && actionConfig.Args.TryGetValue("inRoot", out string? inRoot))
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)