Compare commits

...

1 Commits

Author SHA1 Message Date
Diego
831c611797 10.10.4 2025-08-01 17:30:37 +08:00
2 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<PluginVersion>10.10.2</PluginVersion>
<ProPluginVersion>10.10.2</ProPluginVersion>
<DefaultVersion>10.10.3</DefaultVersion>
<DefaultVersion>10.10.4</DefaultVersion>
<AuthenticationVersion>2.9.29</AuthenticationVersion>
<SourceGeneratorVersion>10.9.29</SourceGeneratorVersion>
<NET8Version>8.0.18</NET8Version>

View File

@@ -328,12 +328,13 @@ public abstract class DriverBase : AsyncDisposableObject, IDriver
if (!DisposedValue)
{
// 记录设备线程已停止的信息
LogMessage?.LogInformation(string.Format(AppResource.DeviceTaskStop, DeviceName));
// 执行资源释放操作
await this.SafeDisposeAsync().ConfigureAwait(false);
// 记录设备线程已停止的信息
LogMessage?.LogInformation(string.Format(AppResource.DeviceTaskStop, DeviceName));
}
}
catch (Exception ex)