From bb298f2f1487928e4a2eecc9082a4b6d51e065dc Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Fri, 12 Sep 2025 17:48:58 +0200 Subject: [PATCH] Fix dipendenze progetto Test.UI --- Test.UI/Components/Pages/Gerarchia.razor.cs | 1 + Test.UI/Test.UI.csproj | 1 + WebWindow.Base/WebWindow.Base.csproj | 4 ++++ WebWindowComplex/TableComp.razor.cs | 5 +++-- WebWindowComplex/WebWindowComplex.csproj | 2 ++ WebWindowConfigurator/WebWindowConfigurator.csproj | 4 ++++ 6 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Test.UI/Components/Pages/Gerarchia.razor.cs b/Test.UI/Components/Pages/Gerarchia.razor.cs index cd44bab..0e9e26b 100644 --- a/Test.UI/Components/Pages/Gerarchia.razor.cs +++ b/Test.UI/Components/Pages/Gerarchia.razor.cs @@ -5,6 +5,7 @@ using Microsoft.AspNetCore.Components; using Newtonsoft.Json; using NLog; using System.Diagnostics; +using WebWindow.Base; using WebWindowComplex; using WebWindowComplex.DTO; diff --git a/Test.UI/Test.UI.csproj b/Test.UI/Test.UI.csproj index e51c208..435a85f 100644 --- a/Test.UI/Test.UI.csproj +++ b/Test.UI/Test.UI.csproj @@ -31,6 +31,7 @@ + diff --git a/WebWindow.Base/WebWindow.Base.csproj b/WebWindow.Base/WebWindow.Base.csproj index b5255ca..c2244b8 100644 --- a/WebWindow.Base/WebWindow.Base.csproj +++ b/WebWindow.Base/WebWindow.Base.csproj @@ -15,3 +15,7 @@ + + + + diff --git a/WebWindowComplex/TableComp.razor.cs b/WebWindowComplex/TableComp.razor.cs index def7c6f..47dba65 100644 --- a/WebWindowComplex/TableComp.razor.cs +++ b/WebWindowComplex/TableComp.razor.cs @@ -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 IN_FamilyHardwareList { get; set; } = null!; [Parameter] - public string IN_SelFamilyHardware { get; set; } = null; + public string? IN_SelFamilyHardware { get; set; } = null; [Parameter] - public List IN_HardwareList { get; set; } = null; + public List? IN_HardwareList { get; set; } = null; [Parameter] public string LiveSVG diff --git a/WebWindowComplex/WebWindowComplex.csproj b/WebWindowComplex/WebWindowComplex.csproj index c432686..25caf21 100644 --- a/WebWindowComplex/WebWindowComplex.csproj +++ b/WebWindowComplex/WebWindowComplex.csproj @@ -31,3 +31,5 @@ + + diff --git a/WebWindowConfigurator/WebWindowConfigurator.csproj b/WebWindowConfigurator/WebWindowConfigurator.csproj index 7629fb7..2b86452 100644 --- a/WebWindowConfigurator/WebWindowConfigurator.csproj +++ b/WebWindowConfigurator/WebWindowConfigurator.csproj @@ -40,3 +40,7 @@ + + + +