'C# .Net 6.0 App's Console.WriteLine not output to /bin/bash on Linux
I'm running into trouble with the following steps:
- Create a simple C# .net 6 console app with the Hello World boilerplate, and publish the portable binaries locally.
- Create a docker container based on mcr.microsoft.com/dotnet/sdk:6.0
- Copy the publish results to the container in a
consoleappdirectory. - Open an interactive session to the container
- Execute
/consoleapp/ConsoleApp1.exe
No error, but no result. Here's the (only) code in the app:
Console.WriteLine("Hello, World!");
I'm expecting to see:
Hello, World!
I feel like I'm missing something incredibly simple...any help would be appreciated.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
