NLog works fine on windows .Net Core application but not on Linux
Clash Royale CLAN TAG #URR8PPP NLog works fine on windows .Net Core application but not on Linux I've got this nlog.config file in my .Net Core console application: nlog.config <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true" internalLogLevel="Error" internalLogFile="c:tempIBTestinternal-nlog.txt"> <targets> <target xsi:type="File" name="allfile" fileName="c:tempIBTestnlog-all-${shortdate}.log" layout="${longdate}|${event-properties:item=EventId.Id}|${logger}|${uppercase:${level}}|${message} ${exception}" /> <target xsi:type="File" name="ownFile-web" fileName="c:tempIBTestnlog-own-${shortdate}.log" layout="${longdate}|${event-p...