heebt
heebt
I have a question regarding the File Archiver Mutex. My Workaround for .Net 4.8 and .Net 6 to write to the same logfile is to create the file and file...
I use the same code as NLog except for the Mutex creation itself. ``` c# public static void checkSharableMutex(String filename) { if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { CreateSharableMutex("FileArchiveLock", filename); CreateSharableMutex("FileLock", filename); } }...