Update librerie e dipendenze

This commit is contained in:
Samuele Locatelli
2025-10-03 17:12:16 +02:00
parent 499ca91019
commit ce7e46f256
9 changed files with 19 additions and 34 deletions
@@ -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);
}