Is there any way to use System.CommandLine with .NET Framework 4.5 (which I need to use due to reasons I can't influence)?
I have used it with later .NET Framework versions without any issues, but unfortunately need to switch back to .NET Framework 4.5
- Getting it via NuGet obviously does not work due to compatibility
- Setting the project to a higher version, getting it via NuGet, setting the project back to .NET Framework 4.5 leaves me with an error, that the
static async Task<int> Main(string[] args)
is not what is expected and theProgram does not contain a static 'Main' method suitable for an entry point
Any workaround to this? Thank you!