WIDESEAWCS_Server/WIDESEAWCS_QuartzJob/Storage.cs
@@ -36,7 +36,7 @@ { Type type = typeof(IDevice); var basePath = AppContext.BaseDirectory; string path = Path.Combine(basePath, $"WIDESEAWCS_QuartzJob.dll"); string path = Path.Combine(basePath, Assembly.GetExecutingAssembly().GetName().Name); Assembly assembly = Assembly.LoadFrom(path); List<Type> types = assembly.GetTypes().Where(x => type.IsAssignableFrom(x) && !x.IsAbstract && !x.IsInterface).ToList(); List<object> data = new List<object>();