using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using HslCommunication.LogNet; namespace Tool { public static class ILogNetFactory { public static ILogNet GetLogNet { get; }= new LogNetDateTime( System.IO.Path.Combine( AppDomain.CurrentDomain.BaseDirectory, "Logs" ), GenerateMode.ByEveryDay, 30 ); } }