build: 10.11.116

fix: 网关监控页面 js释放
test: Benchmark编译错误
This commit is contained in:
2248356998 qq.com
2025-10-20 15:10:50 +08:00
parent 2ee16c3533
commit 516fd7f235
3 changed files with 9 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
<Project>
<PropertyGroup>
<PluginVersion>10.11.115</PluginVersion>
<ProPluginVersion>10.11.115</ProPluginVersion>
<DefaultVersion>10.11.115</DefaultVersion>
<PluginVersion>10.11.116</PluginVersion>
<ProPluginVersion>10.11.116</ProPluginVersion>
<DefaultVersion>10.11.116</DefaultVersion>
<AuthenticationVersion>10.11.6</AuthenticationVersion>
<SourceGeneratorVersion>10.11.6</SourceGeneratorVersion>
<NET8Version>8.0.21</NET8Version>

View File

@@ -1610,9 +1610,10 @@ EventCallback.Factory.Create<MouseEventArgs>(this, async e =>
{
Disposed = true;
ChannelRuntimeDispatchService.UnSubscribe(Refresh);
ChannelRuntimeDispatchService?.UnSubscribe(Refresh);
await Module.InvokeVoidAsync("dispose", Id);
if (Module != null)
await Module.InvokeVoidAsync("dispose", Id);
await base.DisposeAsync(disposing);
}

View File

@@ -296,9 +296,10 @@ public partial class VariableRuntimeInfo
{
Disposed = true;
VariableRuntimeDispatchService.UnSubscribe(Refresh);
VariableRuntimeDispatchService?.UnSubscribe(Refresh);
await Module.InvokeVoidAsync("dispose", Id);
if (Module != null)
await Module.InvokeVoidAsync("dispose", Id);
await base.DisposeAsync(disposing);
}