Commits
- fc533a1: Environment.GetCommandLineArgs() includes the executable itself as the first argument, which breaks System.CommandLine on Linux. Workaround is to use Environment.GetCommandLineArgs().Skip(1).ToArray() per dotnet/runtime#36566. (Kyle Kolander)