Inizio aggiornamento dipendenze

This commit is contained in:
Annamaria Sassi
2026-09-08 10:19:57 +02:00
parent 03112e0f38
commit 4ffab7b17e
9 changed files with 20 additions and 8 deletions
-1
View File
@@ -9,7 +9,6 @@
<PrivateAssets>all</PrivateAssets>
</PackageVersion>
<PackageVersion Include="Egw.Data" Version="2.8.9.716" />
<PackageVersion Include="Egw.Window.Data" Version="2.8.1.2611" />
<PackageVersion Include="EgwCoreLib.Lux.Core" Version="1.0.2609.718" />
<PackageVersion Include="EgwCoreLib.Lux.Data" Version="1.0.2609.718" />
<PackageVersion Include="EgwCoreLib.Razor" Version="1.5.2606.2416" />
+5 -4
View File
@@ -5,6 +5,7 @@ using EgwCoreLib.Lux.Data.DbModel.Config;
using EgwCoreLib.Lux.Data.DbModel.Utils;
using EgwCoreLib.Lux.Data.Services;
using EgwCoreLib.Lux.Data.Services.Config;
using EgwCoreLib.Lux.Data.Services.General;
using EgwCoreLib.Lux.Data.Services.Utils;
using Microsoft.AspNetCore.Components;
using Newtonsoft.Json;
@@ -272,13 +273,13 @@ namespace Test.UI.Components.Pages
AvailProfileList = await CPService.GetAllAsync();
// FixMe Todo: eliminare da REDIS e usare elenco DB solamente...
var rawProfiles = CDService.ProfileList(cEnvir, "Default");
var rawProfiles = await CDService.ProfileListAsync(cEnvir, "Default");
// se fosse vuoto chiamo update...
if (rawProfiles == null || rawProfiles.Count == 0)
{
rawProfiles = CDService.ProfileList(cEnvir, "Default");
rawProfiles = await CDService.ProfileListAsync(cEnvir, "Default");
}
var rawHw = CDService.HwModelList(cEnvir, "HW.AGB");
var rawHw = await CDService.HwModelListAsync(cEnvir, "HW.AGB");
// hw filtro solo validi...
AllConfHardware = rawHw
.Where(x => !x.FamilyName.Equals(x.Description, StringComparison.OrdinalIgnoreCase))
@@ -295,7 +296,7 @@ namespace Test.UI.Components.Pages
.Select(x => x.FamilyName)
.ToList();
AvailHardwareList = AllConfHardware
.Select(x => new Egw.Window.Data.Hardware(x.Id, x.FamilyName, x.Description, x.OpeningType, x.Shape, x.SashQty, x.SashPosition))
.Select(x => new Hardware(x.Id, x.FamilyName, x.Description, x.OpeningType, x.Shape, x.SashQty, x.SashPosition))
.ToList();
AvailWoodList = AllConfWood
.Select(x => x.Description)
+1
View File
@@ -8,6 +8,7 @@ using WebWindowComplex;
using Egw.Data.Window;
using WebWindowComplex.DTO;
using WebWindowConfigurator.DTO;
using EgwCoreLib.Lux.Data.Services.General;
namespace Test.UI.Components.Pages
{
@@ -2,6 +2,7 @@ using Egw.Data.Window;
using EgwCoreLib.Lux.Core;
using EgwCoreLib.Lux.Core.RestPayload;
using EgwCoreLib.Lux.Data.Services;
using EgwCoreLib.Lux.Data.Services.General;
using Microsoft.AspNetCore.Components;
using Newtonsoft.Json;
using WebWindowTest.DTO;
@@ -2,6 +2,7 @@ using Egw.Data.Window;
using EgwCoreLib.Lux.Core;
using EgwCoreLib.Lux.Core.RestPayload;
using EgwCoreLib.Lux.Data.Services;
using EgwCoreLib.Lux.Data.Services.General;
using Microsoft.AspNetCore.Components;
using Newtonsoft.Json;
using WebWindowComplex;
+2 -1
View File
@@ -1,5 +1,6 @@
using EgwCoreLib.Lux.Data;
using EgwCoreLib.Lux.Data.Services;
using EgwCoreLib.Lux.Data.Services.General;
using EgwCoreLib.Lux.Data.Services.Internal;
using Microsoft.EntityFrameworkCore;
using NLog;
using NLog.Web;
+1
View File
@@ -27,6 +27,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Egw.Data" />
<PackageReference Include="NLog" />
<PackageReference Include="NLog.Web.AspNetCore" />
<ProjectReference Include="..\Test.UI.Client\Test.UI.Client.csproj" />
+6 -1
View File
@@ -6,7 +6,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>3.1.9.718</Version>
<Version>3.1.9.810</Version>
<Authors>Annamaria Sassi</Authors>
<Company>Egalware</Company>
<Description>Componente gestione Configurazioni avanzate Window per LUX</Description>
@@ -132,6 +132,11 @@
@@ -6,7 +6,7 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>3.1.9.718</Version>
<Version>3.1.9.810</Version>
<Authors>Annamaria Sassi</Authors>
<Company>Egalware</Company>
<Description>Componente gestione JWD per LUX</Description>
@@ -234,6 +234,8 @@