diff --git a/Test.UI.sln b/Test.UI.sln
index 7fba70d..62e79a7 100644
--- a/Test.UI.sln
+++ b/Test.UI.sln
@@ -15,8 +15,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebWindowComplex", "WebWind
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebWindowTest", "WebWindowTest\WebWindowTest.csproj", "{C22770A7-C344-4CE9-8D6F-6ACE62091C31}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebWindow.Base", "WebWindow.Base\WebWindow.Base.csproj", "{5D1B481C-8029-488A-BD4F-B03001A482FB}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -47,10 +45,6 @@ Global
{C22770A7-C344-4CE9-8D6F-6ACE62091C31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C22770A7-C344-4CE9-8D6F-6ACE62091C31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C22770A7-C344-4CE9-8D6F-6ACE62091C31}.Release|Any CPU.Build.0 = Release|Any CPU
- {5D1B481C-8029-488A-BD4F-B03001A482FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {5D1B481C-8029-488A-BD4F-B03001A482FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {5D1B481C-8029-488A-BD4F-B03001A482FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {5D1B481C-8029-488A-BD4F-B03001A482FB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Test.UI/Test.UI.csproj b/Test.UI/Test.UI.csproj
index e3221e7..85957de 100644
--- a/Test.UI/Test.UI.csproj
+++ b/Test.UI/Test.UI.csproj
@@ -31,12 +31,11 @@
-
-
-
+
+
diff --git a/WebAedificaConfigurator/WebAedificaConfigurator.csproj b/WebAedificaConfigurator/WebAedificaConfigurator.csproj
index d6f09aa..2b08dd6 100644
--- a/WebAedificaConfigurator/WebAedificaConfigurator.csproj
+++ b/WebAedificaConfigurator/WebAedificaConfigurator.csproj
@@ -12,11 +12,8 @@
-
-
-
-
-
+
+
diff --git a/WebAedificaConfigurator/WebAedificaMaker.razor.cs b/WebAedificaConfigurator/WebAedificaMaker.razor.cs
index f69fb11..2f155ee 100644
--- a/WebAedificaConfigurator/WebAedificaMaker.razor.cs
+++ b/WebAedificaConfigurator/WebAedificaMaker.razor.cs
@@ -1,5 +1,6 @@
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
+using Egw.Window.Data;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
@@ -8,7 +9,6 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
-using WebWindow.Base;
namespace WebAedificaConfigurator
{
@@ -62,7 +62,7 @@ namespace WebAedificaConfigurator
using var reader = new StreamReader(stream);
string rawContent = await reader.ReadToEndAsync();
// parametri richiesta
- Args.Add("Mode", $"{(int)Enums.EngineQueryType.Preview}");
+ Args.Add("Mode", $"{(int)Enums.QuestionModes.PREVIEW}");
Args.Add("Btl", rawContent);
await EC_OnSave.InvokeAsync(Args);
}
diff --git a/WebWindowComplex/WebWindowComplex.csproj b/WebWindowComplex/WebWindowComplex.csproj
index 750a89e..b62f6d4 100644
--- a/WebWindowComplex/WebWindowComplex.csproj
+++ b/WebWindowComplex/WebWindowComplex.csproj
@@ -6,7 +6,7 @@
net8.0
enable
enable
- 2.7.10.313
+ 2.7.10.317
Annamaria Sassi
Egalware
Componente gestione Configurazioni avanzate Window per LUX
@@ -18,16 +18,12 @@
-
+
-
-
-
-
@@ -43,3 +39,6 @@
+
+
+
diff --git a/WebWindowConfigurator/WebWindowConfigurator.csproj b/WebWindowConfigurator/WebWindowConfigurator.csproj
index d01d0d6..43755c9 100644
--- a/WebWindowConfigurator/WebWindowConfigurator.csproj
+++ b/WebWindowConfigurator/WebWindowConfigurator.csproj
@@ -6,7 +6,7 @@
net8.0
enable
enable
- 2.7.10.313
+ 2.7.10.317
Annamaria Sassi
Egalware
Componente gestione JWD per LUX
@@ -26,15 +26,12 @@
+
-
+
-
-
-
-
@@ -42,3 +39,5 @@
+
+
diff --git a/WebWindowConfigurator/Window.cs b/WebWindowConfigurator/Window.cs
index cd72bd1..223bd9b 100644
--- a/WebWindowConfigurator/Window.cs
+++ b/WebWindowConfigurator/Window.cs
@@ -6,7 +6,7 @@ using System.ComponentModel;
using System.Drawing;
using System.Runtime.Intrinsics.Arm;
using System.Xml.Serialization;
-using WebWindow.Base;
+using Egw.Window.Data;
using WebWindowConfigurator.Json;
using static WebWindowConfigurator.Json.WindowConst;
diff --git a/WebWindowConfigurator/_Imports.razor b/WebWindowConfigurator/_Imports.razor
index 7728512..3d528e2 100644
--- a/WebWindowConfigurator/_Imports.razor
+++ b/WebWindowConfigurator/_Imports.razor
@@ -1 +1,2 @@
@using Microsoft.AspNetCore.Components.Web
+@using Egw.Window.Data
\ No newline at end of file
diff --git a/WebWindowTest/WebWindowTest.csproj b/WebWindowTest/WebWindowTest.csproj
index 057d4c0..e2be174 100644
--- a/WebWindowTest/WebWindowTest.csproj
+++ b/WebWindowTest/WebWindowTest.csproj
@@ -12,15 +12,11 @@
-
+
-
-
-
-