Execute not blocking async shell command in C#

note, May 22, 2023 on Mitja Felicijan's blog

Execute a shell command in async in C# while not blocking the UI thread.

private async Task executeCopyCommand()
@@ -27,21 +27,18 @@ in the method that calls executeCopyCommand().
{
   await executeCopyCommand();
 }
-