Hi there,

Just trying to create a simple service running on server. This service should report his status by HTTP and should have a nice log mechanism. So I finished my investigation to use NetCore + Nancy + Serilog + Newtonsoft.Json + FakeItEasy + App Metrics.

Please find the source code of sample application here.

Want to mention that I had to install the next lib:

sudo apt-get install libunwind8

to actually run my service on remote server - Ubuntu 16.04 x64. There was the next error: Failed to load libcoreclr.so libunwind.so.8 cannot open shared object file” without this library.

Also project.json is set up to build self-contained application:

dotnet publish -c Release -r ubuntu.16.04-x64 -o packages/ubuntu

Thanks.