Compare commits

...

4 Commits

Author SHA1 Message Date
Kimdiego2098
57dfc22ff7 更新版本号 2023-12-08 10:20:54 +08:00
Kimdiego2098
adc489b6ed 回退sqlsugar版本 2023-12-07 15:12:47 +08:00
Kimdiego2098
0623684315 nuget安装sqlite8.0.0 2023-12-07 14:34:14 +08:00
Kimdiego2098
68afccd859 修复OPC节点空间浏览窗口退出时报错的问题 2023-12-07 14:21:24 +08:00
6 changed files with 4 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<TargetFrameworks>net6.0;net8.0;</TargetFrameworks>
<Version>4.0.0.8</Version>
<Version>4.0.0.9</Version>
<LangVersion>latest</LangVersion>
<Authors>Diego</Authors>
<Product>ThingsGateway</Product>

View File

@@ -8,7 +8,7 @@
<PackageReference Include="Furion.Pure" Version="4.9.1.11" />
<PackageReference Include="Furion.Extras.ObjectMapper.Mapster" Version="4.9.1.11" />
<PackageReference Include="Furion.Extras.Authentication.JwtBearer" Version="4.9.1.11" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.126" />
<PackageReference Include="SqlSugarCore" Version="5.1.4.122" />
<PackageReference Include="UAParser" Version="3.1.47" />
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
</ItemGroup>

View File

@@ -14,7 +14,6 @@
@using BlazorComponent;
@using Microsoft.AspNetCore.Components.Web;
@using System.Reflection;
@inherits BaseComponentBase
@using ThingsGateway.Foundation.Adapter.OPCDA;
@using ThingsGateway.Foundation.Core;

View File

@@ -12,8 +12,6 @@
using Microsoft.AspNetCore.Components;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using ThingsGateway.Foundation.Adapter.OPCDA.Rcw;
@@ -141,6 +139,7 @@ public partial class OPCDAImportVariable
overlay = false;
await InvokeAsync(StateHasChanged);
});
await base.OnInitializedAsync();
}

View File

@@ -11,7 +11,6 @@
*@
@namespace ThingsGateway.Foundation.Demo
@inherits BaseComponentBase
@using BlazorComponent;
@using Microsoft.AspNetCore.Components.Web;

View File

@@ -14,8 +14,6 @@ using Microsoft.AspNetCore.Components;
using Opc.Ua;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using ThingsGateway.Foundation.Adapter.OPCUA;
@@ -173,6 +171,7 @@ public partial class OPCUAImportVariable
overlay = false;
await InvokeAsync(StateHasChanged);
});
base.OnInitialized();
}