diff --git a/SteUp.Data/LocalDb/EntityServices/IspezioniService.cs b/SteUp.Data/LocalDb/EntityServices/IspezioniService.cs
index b5dbbb2..cf3a1be 100644
--- a/SteUp.Data/LocalDb/EntityServices/IspezioniService.cs
+++ b/SteUp.Data/LocalDb/EntityServices/IspezioniService.cs
@@ -119,7 +119,7 @@ public class IspezioniService(AppDbContext db) : IIspezioniService
{
var schede = await GetAllSchedeOfIspezioneAsync(codMdep, data, rilevatore);
if (schede.Count > 0)
- throw new Exception("Impossibile cancellare l'ispezione perché ci sono schede collegate. Cancellare prima le schede.");
+ throw new Exception("Impossibile cancellare l'ispezione perché ci sono schede collegate.");
var ispezione = await db.Ispezioni
.FirstOrDefaultAsync(x =>
diff --git a/SteUp.Data/SteUp.Data.csproj b/SteUp.Data/SteUp.Data.csproj
index a8a87ca..b5eccd9 100644
--- a/SteUp.Data/SteUp.Data.csproj
+++ b/SteUp.Data/SteUp.Data.csproj
@@ -7,12 +7,12 @@
-
-
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/SteUp.Maui/SteUp.Maui.csproj b/SteUp.Maui/SteUp.Maui.csproj
index 26b6cb4..5d7ecec 100644
--- a/SteUp.Maui/SteUp.Maui.csproj
+++ b/SteUp.Maui/SteUp.Maui.csproj
@@ -112,15 +112,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/SteUp.Shared/Core/Services/IntegrySteupService.cs b/SteUp.Shared/Core/Services/IntegrySteupService.cs
index ae0b668..5160af4 100644
--- a/SteUp.Shared/Core/Services/IntegrySteupService.cs
+++ b/SteUp.Shared/Core/Services/IntegrySteupService.cs
@@ -26,7 +26,7 @@ public class IntegrySteupService(IIntegryApiRestClient integryApiRestClient) : I
public Task RetrieveArtFromBarcode(string barcode) =>
integryApiRestClient.AuthorizedGet(
$"{BaseRequest}/retrieveArtFromBarcode",
- new Dictionary
+ new Dictionary
{
{ "barcode", barcode }
}
@@ -73,7 +73,7 @@ public class IntegrySteupService(IIntegryApiRestClient integryApiRestClient) : I
public Task DeleteScheda(string activityId) =>
integryApiRestClient.AuthorizedGet