Hello,
I have developed two separate net core console applications. I've successfully published them from Visual Studio to *.dll files.
When I try to run them from Linux console with "dotnet appname.dll" they start and do what they are supposed to do.
The problem is that they should work in parallel but when I try to start both of them from 2 consoles only the first application is started and the second one exits without doing anything.
Is it possible to run two applications simultaneously with dotnet cmd on linux?
The version that I use is .Net Core 2.0.4