I have some problem with deploy simple .Net core console application to linux server.
I\'ve created simple console Hello world application this way:
You may want to check out dotnet-packaging as well. It includes a dotnet deb command line utility which allows you to create a .deb file (i.e. a Debian installer) which you can use to install your app on Debian. It should make deployment easier for you.
To get started, you'll first need to add this section to your .csproj file:
Then, run dotnet restore and dotnet deb -c Release -r debian.8-x64 -f netcoreapp2.0. This will create a .deb file you can use to deploy your application to Debian.