Fix dipendenze progetto Test.UI

This commit is contained in:
Samuele Locatelli
2025-09-12 17:48:58 +02:00
parent 658faa7d57
commit bb298f2f14
6 changed files with 15 additions and 2 deletions
@@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Components;
using Newtonsoft.Json;
using NLog;
using System.Diagnostics;
using WebWindow.Base;
using WebWindowComplex;
using WebWindowComplex.DTO;
+1
View File
@@ -31,6 +31,7 @@
<ItemGroup>
<ProjectReference Include="..\Test.UI.Client\Test.UI.Client.csproj" />
<ProjectReference Include="..\WebAedificaConfigurator\WebAedificaConfigurator.csproj" />
<ProjectReference Include="..\WebWindow.Base\WebWindow.Base.csproj" />
<ProjectReference Include="..\WebWindowComplex\WebWindowComplex.csproj" />
<ProjectReference Include="..\WebWindowConfigurator\WebWindowConfigurator.csproj" />
<ProjectReference Include="..\WebWindowJWD\WebWindowJWD.csproj" />
+4
View File
@@ -15,3 +15,7 @@
</Target>
</Project>
+3 -2
View File
@@ -4,6 +4,7 @@ using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Reflection.Metadata;
using System.Runtime.InteropServices;
using WebWindow.Base;
using WebWindowComplex.DTO;
using WebWindowComplex.Json;
using static WebWindowComplex.Json.WindowConst;
@@ -80,10 +81,10 @@ namespace WebWindowComplex
public List<string> IN_FamilyHardwareList { get; set; } = null!;
[Parameter]
public string IN_SelFamilyHardware { get; set; } = null;
public string? IN_SelFamilyHardware { get; set; } = null;
[Parameter]
public List<Hardware> IN_HardwareList { get; set; } = null;
public List<Hardware>? IN_HardwareList { get; set; } = null;
[Parameter]
public string LiveSVG
+2
View File
@@ -31,3 +31,5 @@
</Project>
@@ -40,3 +40,7 @@