in eng/update-dependencies/Options.cs [49:60]
public static IEnumerable<Symbol> GetCliSymbols() =>
new Symbol[]
{
new Option<string?>("--datestamp-all", "Tag date stamp to assign to all image types"),
new Option<string?>("--datestamp-runtime", "Tag date stamp to assign to runtime image types (overrides datestamp-all)"),
new Option<string?>("--datestamp-sdk", "Tag date stamp to assign to SDK image types (overrides datestamp-all)"),
new Option<string?>("--datestamp-aspnet", "Tag date stamp to assign to ASP.NET image types (overrides datestamp-all)"),
new Option<string?>("--datestamp-wcf", "Tag date stamp to assign to WCF image types (overrides datestamp-all)"),
new Option<string?>("--email", "GitHub email used to make PR (if not specified, a PR will not be created)"),
new Option<string?>("--password", "GitHub password used to make PR (if not specified, a PR will not be created)"),
new Option<string?>("--user", "GitHub user used to make PR (if not specified, a PR will not be created)")
};