diff --git a/MP-TAB3/MP-TAB3.csproj b/MP-TAB3/MP-TAB3.csproj
index 7af3a367..b9e389bb 100644
--- a/MP-TAB3/MP-TAB3.csproj
+++ b/MP-TAB3/MP-TAB3.csproj
@@ -3,7 +3,7 @@
net8.0
enable
- 8.16.2605.2909
+ 8.16.2605.2911
enable
MP_TAB3
diff --git a/MP-TAB3/Resources/ChangeLog.html b/MP-TAB3/Resources/ChangeLog.html
index 93e3aa9a..343ce97c 100644
--- a/MP-TAB3/Resources/ChangeLog.html
+++ b/MP-TAB3/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOSPEC
- Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
-
diff --git a/MP-TAB3/Resources/VersNum.txt b/MP-TAB3/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP-TAB3/Resources/VersNum.txt
+++ b/MP-TAB3/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP-TAB3/Resources/manifest.xml b/MP-TAB3/Resources/manifest.xml
index 1c6cb3ca..2fd69be0 100644
--- a/MP-TAB3/Resources/manifest.xml
+++ b/MP-TAB3/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip
https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html
false
diff --git a/MP.Data/Controllers/MpSpecController.cs b/MP.Data/Controllers/MpSpecController.cs
index 64b2974d..5ba4d1f0 100644
--- a/MP.Data/Controllers/MpSpecController.cs
+++ b/MP.Data/Controllers/MpSpecController.cs
@@ -2646,26 +2646,21 @@ namespace MP.Data.Controllers
/// Elimina record
///
///
- public bool WipKitDelete(WipSetupKitModel rec2del)
+ public async Task WipKitDeleteAsync(WipSetupKitModel rec2del)
{
- bool fatto = false;
- using (var dbCtx = new MoonProContext(options))
+ using var dbCtx = new MoonProContext(options);
+ var actRec = await dbCtx
+ .DbSetWipKit
+ .Where(x => x.KeyFilt == rec2del.KeyFilt && x.CodOrd == rec2del.CodOrd)
+ .FirstOrDefaultAsync();
+ // se ci fosse aggiorno...
+ if (actRec != null)
{
- var actRec = dbCtx
- .DbSetWipKit
- .Where(x => x.KeyFilt == rec2del.KeyFilt && x.CodOrd == rec2del.CodOrd)
- .FirstOrDefault();
- // se ci fosse aggiorno...
- if (actRec != null)
- {
- dbCtx
- .DbSetWipKit
- .Remove(actRec);
- }
- var res = dbCtx.SaveChanges();
- fatto = res != 0;
+ dbCtx
+ .DbSetWipKit
+ .Remove(actRec);
}
- return fatto;
+ return await dbCtx.SaveChangesAsync() > 0;
}
///
@@ -2699,26 +2694,21 @@ namespace MP.Data.Controllers
///
///
///
- public bool WipKitDeleteOlder(DateTime dateLimit)
+ public async Task WipKitDeleteOlderAsync(DateTime dateLimit)
{
- bool fatto = false;
- using (var dbCtx = new MoonProContext(options))
- {
- var actRec = dbCtx
+ using var dbCtx = new MoonProContext(options);
+ var actRec = await dbCtx
.DbSetWipKit
.Where(x => x.DataIns < dateLimit)
- .ToList();
- // se ci fosse aggiorno...
- if (actRec != null)
- {
- dbCtx
- .DbSetWipKit
- .RemoveRange(actRec);
- }
- var res = dbCtx.SaveChanges();
- fatto = res != 0;
+ .ToListAsync();
+ // se ci fosse aggiorno...
+ if (actRec != null)
+ {
+ dbCtx
+ .DbSetWipKit
+ .RemoveRange(actRec);
}
- return fatto;
+ return await dbCtx.SaveChangesAsync() > 0;
}
///
@@ -2746,35 +2736,30 @@ namespace MP.Data.Controllers
/// Esegue upsert record
///
///
- public bool WipKitUpsert(WipSetupKitModel editRec)
+ public async Task WipKitUpsertAsync(WipSetupKitModel editRec)
{
- bool fatto = false;
- using (var dbCtx = new MoonProContext(options))
- {
- var actRec = dbCtx
+ using var dbCtx = new MoonProContext(options);
+ var actRec = await dbCtx
.DbSetWipKit
.Where(x => x.KeyFilt == editRec.KeyFilt && x.CodOrd == editRec.CodOrd)
- .FirstOrDefault();
+ .FirstOrDefaultAsync();
- // se ci fosse aggiorno...
- if (actRec == null)
- {
- dbCtx
- .DbSetWipKit
- .Add(editRec);
- }
- else
- {
- actRec.CodArt = editRec.CodArt;
- actRec.DescArt = editRec.DescArt;
- actRec.Qta = editRec.Qta;
- actRec.DataIns = editRec.DataIns;
- dbCtx.Entry(actRec).State = EntityState.Modified;
- }
- var res = dbCtx.SaveChanges();
- fatto = res != 0;
+ // se ci fosse aggiorno...
+ if (actRec == null)
+ {
+ dbCtx
+ .DbSetWipKit
+ .Add(editRec);
}
- return fatto;
+ else
+ {
+ actRec.CodArt = editRec.CodArt;
+ actRec.DescArt = editRec.DescArt;
+ actRec.Qta = editRec.Qta;
+ actRec.DataIns = editRec.DataIns;
+ dbCtx.Entry(actRec).State = EntityState.Modified;
+ }
+ return await dbCtx.SaveChangesAsync() > 0;
}
#endregion Public Methods
diff --git a/MP.INVE/MP.INVE.csproj b/MP.INVE/MP.INVE.csproj
index 35d1abc5..cbfbc92f 100644
--- a/MP.INVE/MP.INVE.csproj
+++ b/MP.INVE/MP.INVE.csproj
@@ -5,7 +5,7 @@
enable
enable
MP.INVE
- 8.16.2605.2909
+ 8.16.2605.2911
diff --git a/MP.INVE/Resources/ChangeLog.html b/MP.INVE/Resources/ChangeLog.html
index 4abbf633..7a1980e1 100644
--- a/MP.INVE/Resources/ChangeLog.html
+++ b/MP.INVE/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOINVE
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
-
diff --git a/MP.INVE/Resources/VersNum.txt b/MP.INVE/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.INVE/Resources/VersNum.txt
+++ b/MP.INVE/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.INVE/Resources/manifest.xml b/MP.INVE/Resources/manifest.xml
index 97ff5f96..67c1a1cb 100644
--- a/MP.INVE/Resources/manifest.xml
+++ b/MP.INVE/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-INVE/stable/LAST/MP.INVE.zip
https://nexus.steamware.net/repository/SWS/MP-INVE/stable/LAST/ChangeLog.html
false
diff --git a/MP.IOC/MP.IOC.csproj b/MP.IOC/MP.IOC.csproj
index 10ea946d..76c4ccc4 100644
--- a/MP.IOC/MP.IOC.csproj
+++ b/MP.IOC/MP.IOC.csproj
@@ -4,7 +4,7 @@
net8.0
enable
enable
- 8.16.2605.2909
+ 8.16.2605.2911
diff --git a/MP.IOC/Resources/ChangeLog.html b/MP.IOC/Resources/ChangeLog.html
index 847874ba..62354787 100644
--- a/MP.IOC/Resources/ChangeLog.html
+++ b/MP.IOC/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MP-IOC
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
-
diff --git a/MP.IOC/Resources/VersNum.txt b/MP.IOC/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.IOC/Resources/VersNum.txt
+++ b/MP.IOC/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.IOC/Resources/manifest.xml b/MP.IOC/Resources/manifest.xml
index ce11ebb0..81a9ccf1 100644
--- a/MP.IOC/Resources/manifest.xml
+++ b/MP.IOC/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-IOC/stable/LAST/MP.IOC.zip
https://nexus.steamware.net/repository/SWS/MP-IOC/stable/LAST/ChangeLog.html
false
diff --git a/MP.Land/MP.Land.csproj b/MP.Land/MP.Land.csproj
index cc0b62f4..cdfc0a46 100644
--- a/MP.Land/MP.Land.csproj
+++ b/MP.Land/MP.Land.csproj
@@ -3,7 +3,7 @@
net8.0
MP.Land
- 8.16.2605.2909
+ 8.16.2605.2911
Debug;Release;Debug_LiManDebug
en
True
diff --git a/MP.Land/Resources/ChangeLog.html b/MP.Land/Resources/ChangeLog.html
index 4ebccb9d..950f7cc4 100644
--- a/MP.Land/Resources/ChangeLog.html
+++ b/MP.Land/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo Tablet MAPO - DotNet6
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
diff --git a/MP.Land/Resources/VersNum.txt b/MP.Land/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.Land/Resources/VersNum.txt
+++ b/MP.Land/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.Land/Resources/manifest.xml b/MP.Land/Resources/manifest.xml
index fe615da2..c07fc1f4 100644
--- a/MP.Land/Resources/manifest.xml
+++ b/MP.Land/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/MP.Land.zip
https://nexus.steamware.net/repository/SWS/MP-LAND/stable/LAST/ChangeLog.html
false
diff --git a/MP.MON/MP.MON.csproj b/MP.MON/MP.MON.csproj
index b2db2163..bd485066 100644
--- a/MP.MON/MP.MON.csproj
+++ b/MP.MON/MP.MON.csproj
@@ -6,7 +6,7 @@
enable
MP.MON
$(AssemblyName.Replace(' ', '_'))
- 8.16.2605.2909
+ 8.16.2605.2911
diff --git a/MP.MON/Resources/ChangeLog.html b/MP.MON/Resources/ChangeLog.html
index 93e3aa9a..343ce97c 100644
--- a/MP.MON/Resources/ChangeLog.html
+++ b/MP.MON/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOSPEC
- Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
-
diff --git a/MP.MON/Resources/VersNum.txt b/MP.MON/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.MON/Resources/VersNum.txt
+++ b/MP.MON/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.MON/Resources/manifest.xml b/MP.MON/Resources/manifest.xml
index 8018e1f9..b740b894 100644
--- a/MP.MON/Resources/manifest.xml
+++ b/MP.MON/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-MON/stable/LAST/MP.MON.zip
https://nexus.steamware.net/repository/SWS/MP-MON/stable/LAST/ChangeLog.html
false
diff --git a/MP.Prog/MP.Prog.csproj b/MP.Prog/MP.Prog.csproj
index b11ce330..be7acaa9 100644
--- a/MP.Prog/MP.Prog.csproj
+++ b/MP.Prog/MP.Prog.csproj
@@ -3,7 +3,7 @@
net8.0
MP.Prog
- 8.16.2605.2909
+ 8.16.2605.2911
True
diff --git a/MP.Prog/Resources/ChangeLog.html b/MP.Prog/Resources/ChangeLog.html
index fe7e5613..52823f19 100644
--- a/MP.Prog/Resources/ChangeLog.html
+++ b/MP.Prog/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo gestione Programmi MAPO
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
diff --git a/MP.Prog/Resources/VersNum.txt b/MP.Prog/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.Prog/Resources/VersNum.txt
+++ b/MP.Prog/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.Prog/Resources/manifest.xml b/MP.Prog/Resources/manifest.xml
index 5050f27c..708d6114 100644
--- a/MP.Prog/Resources/manifest.xml
+++ b/MP.Prog/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/MP.Prog.zip
https://nexus.steamware.net/repository/SWS/MP-PROG/stable/LAST/ChangeLog.html
false
diff --git a/MP.RIOC/MP.RIOC.csproj b/MP.RIOC/MP.RIOC.csproj
index 8d6c2176..f06e6cfe 100644
--- a/MP.RIOC/MP.RIOC.csproj
+++ b/MP.RIOC/MP.RIOC.csproj
@@ -5,7 +5,7 @@
enable
enable
MP.RIOC
- 8.16.2605.2909
+ 8.16.2605.2911
diff --git a/MP.RIOC/Resources/ChangeLog.html b/MP.RIOC/Resources/ChangeLog.html
index 3541dd03..ef43307c 100644
--- a/MP.RIOC/Resources/ChangeLog.html
+++ b/MP.RIOC/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MP-RIOC
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
-
diff --git a/MP.RIOC/Resources/VersNum.txt b/MP.RIOC/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.RIOC/Resources/VersNum.txt
+++ b/MP.RIOC/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.RIOC/Resources/manifest.xml b/MP.RIOC/Resources/manifest.xml
index b5daae2a..d1bb994b 100644
--- a/MP.RIOC/Resources/manifest.xml
+++ b/MP.RIOC/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-RIOC/stable/LAST/MP.RIOC.zip
https://nexus.steamware.net/repository/SWS/MP-RIOC/stable/LAST/ChangeLog.html
false
diff --git a/MP.SPEC/Components/ListPODL.razor.cs b/MP.SPEC/Components/ListPODL.razor.cs
index b9d5f829..0ba0d75e 100644
--- a/MP.SPEC/Components/ListPODL.razor.cs
+++ b/MP.SPEC/Components/ListPODL.razor.cs
@@ -285,9 +285,6 @@ namespace MP.SPEC.Components
{
SearchRecords = rawList
.Where(x =>
- //EF.Functions.Like(x.CodArticolo, actFilter.SearchVal) ||
- //EF.Functions.Like(x.CodFase, actFilter.SearchVal) ||
- //EF.Functions.Like(x.DescArticolo, actFilter.SearchVal)
x.CodArticolo.Contains(actFilter.SearchVal, StringComparison.InvariantCulture)
|| x.CodFase.Contains(actFilter.SearchVal, StringComparison.InvariantCulture)
|| x.DescArticolo.Contains(actFilter.SearchVal, StringComparison.InvariantCulture)
@@ -304,30 +301,6 @@ namespace MP.SPEC.Components
isLoading = false;
}
-#if false
- protected async Task ReloadData()
- {
- ListRecords = null;
- isLoading = true;
- await UpdateOdlList();
- // verifico filtro odl...
- if (actFilter.ShowKit)
- {
- SearchRecords = await MDService.POdlListGetFiltAsync(hasOdl, StatoSel, macchina, reparto, selDtStart, selDtEnd);
- }
- else
- {
- SearchRecords = await MDService.POdlToKitListGetFiltAsync(hasOdl, StatoSel, macchina, reparto, selDtStart, selDtEnd);
- }
- if (totalCount != SearchRecords.Count)
- {
- totalCount = SearchRecords.Count;
- }
- ListRecords = SearchRecords.Skip(numRecord * (currPage - 1)).Take(numRecord).ToList();
- isLoading = false;
- }
-#endif
-
protected async Task resetSel(bool forceUpdate)
{
currRecord = null;
diff --git a/MP.SPEC/Components/ProdKit/KitComposer.razor.cs b/MP.SPEC/Components/ProdKit/KitComposer.razor.cs
index 8e5af742..dd153f37 100644
--- a/MP.SPEC/Components/ProdKit/KitComposer.razor.cs
+++ b/MP.SPEC/Components/ProdKit/KitComposer.razor.cs
@@ -42,7 +42,7 @@ namespace MP.SPEC.Components.ProdKit
// elimino TUTTO...
DateTime dtLimit = DateTime.Now;//.AddHours(-1);
- var done = MDService.WipKitDeleteOlder(dtLimit);
+ var done = await MDService.WipKitDeleteOlderAsync(dtLimit);
await EC_ListCleared.InvokeAsync(false);
}
@@ -51,18 +51,18 @@ namespace MP.SPEC.Components.ProdKit
if (!await JSRuntime.InvokeAsync("confirm", "Eliminazione riga KIT: sei sicuro di voler procedere?"))
return;
- var done = MDService.WipKitDelete(rec2del);
+ var done = await MDService.WipKitDeleteAsync(rec2del);
await EC_ListUpdated.InvokeAsync(false);
}
- protected override void OnInitialized()
+ protected override async Task OnInitializedAsync()
{
// calcolo codice temporaneo utente...da apertura KIT
if (string.IsNullOrEmpty(KeyFilt))
{
// elimino dati + vecchi di 2h...
DateTime dtLimit = DateTime.Now.AddHours(-2);
- var done = MDService.WipKitDeleteOlder(dtLimit);
+ var done = await MDService.WipKitDeleteOlderAsync(dtLimit);
}
}
diff --git a/MP.SPEC/Components/ProdKit/Manager.razor.cs b/MP.SPEC/Components/ProdKit/Manager.razor.cs
index 543c26df..1183f648 100644
--- a/MP.SPEC/Components/ProdKit/Manager.razor.cs
+++ b/MP.SPEC/Components/ProdKit/Manager.razor.cs
@@ -94,7 +94,7 @@ namespace MP.SPEC.Components.ProdKit
Qta = selRec.NumPezzi,
DataIns = DateTime.Now
};
- bool fatto = MDService.WipKitUpsert(newRec);
+ bool fatto = await MDService.WipKitUpsertAsync(newRec);
// se non gią impostato riporto impostazione filtro con macchina e gruppo ricevuto...
ActFilt.IdxMacchina = selRec.IdxMacchina;
ActFilt.CodReparto = selRec.CodGruppo;
diff --git a/MP.SPEC/Data/MpDataService.cs b/MP.SPEC/Data/MpDataService.cs
index d406cb6a..5cdab00b 100644
--- a/MP.SPEC/Data/MpDataService.cs
+++ b/MP.SPEC/Data/MpDataService.cs
@@ -2251,18 +2251,21 @@ namespace MP.SPEC.Data
/// Elimina record + svuotamento cache
///
///
- public bool WipKitDelete(WipSetupKitModel currRecord)
+ public async Task WipKitDeleteAsync(WipSetupKitModel currRecord)
{
- using var activity = ActivitySource.StartActivity("WipKitDelete");
+ using var activity = ActivitySource.StartActivity("WipKitDeleteAsync");
string source = "DB";
bool fatto = false;
// salvo
- fatto = dbController.WipKitDelete(currRecord);
+ fatto = await dbController.WipKitDeleteAsync(currRecord);
// svuoto cache
- EmptyWipCache();
+ await FlushCacheByTagAsync(Utils.redisKitWip);
+#if false
+ EmptyWipCache();
+#endif
activity?.SetTag("data.source", source);
activity?.Stop();
- LogTrace($"WipKitDelete Read from {source}: {activity?.Duration.TotalMilliseconds}ms");
+ LogTrace($"WipKitDeleteAsync Read from {source}: {activity?.Duration.TotalMilliseconds}ms");
return fatto;
}
@@ -2270,18 +2273,21 @@ namespace MP.SPEC.Data
/// Elimina i record più vecchi della data-ora indicata
///
///
- public bool WipKitDeleteOlder(DateTime DateLimit)
+ public async Task WipKitDeleteOlderAsync(DateTime DateLimit)
{
- using var activity = ActivitySource.StartActivity("WipKitDeleteOlder");
+ using var activity = ActivitySource.StartActivity("WipKitDeleteOlderAsync");
string source = "DB";
bool fatto = false;
// salvo
- fatto = dbController.WipKitDeleteOlder(DateLimit);
- // svuoto cache
- EmptyWipCache();
+ fatto = await dbController.WipKitDeleteOlderAsync(DateLimit);
+ // svuoto cache KitWip
+ await FlushCacheByTagAsync(Utils.redisKitWip);
+#if false
+ EmptyWipCache();
+#endif
activity?.SetTag("data.source", source);
activity?.Stop();
- LogTrace($"WipKitDeleteOlder Read from {source}: {activity?.Duration.TotalMilliseconds}ms");
+ LogTrace($"WipKitDeleteOlderAsync Read from {source}: {activity?.Duration.TotalMilliseconds}ms");
return fatto;
}
@@ -2306,18 +2312,21 @@ namespace MP.SPEC.Data
/// Esegue salvataggio record + svuotamento cache
///
///
- public bool WipKitUpsert(WipSetupKitModel currRecord)
+ public async Task WipKitUpsertAsync(WipSetupKitModel currRecord)
{
- using var activity = ActivitySource.StartActivity("WipKitUpsert");
+ using var activity = ActivitySource.StartActivity("WipKitUpsertAsync");
string source = "DB";
bool fatto = false;
// salvo
- fatto = dbController.WipKitUpsert(currRecord);
+ fatto = await dbController.WipKitUpsertAsync(currRecord);
// svuoto cache KitWip
- EmptyWipCache();
+ await FlushCacheByTagAsync(Utils.redisKitWip);
+#if false
+ EmptyWipCache();
+#endif
activity?.SetTag("data.source", source);
activity?.Stop();
- LogTrace($"WipKitUpsert | {source} | {activity?.Duration.TotalMilliseconds}ms");
+ LogTrace($"WipKitUpsertAsync | {source} | {activity?.Duration.TotalMilliseconds}ms");
return fatto;
}
@@ -2472,6 +2481,7 @@ namespace MP.SPEC.Data
#region Private Methods
+#if false
///
/// Svuota cache creazione KIT
///
@@ -2482,7 +2492,8 @@ namespace MP.SPEC.Data
{
ExecFlushRedisPattern(pattern);
}
- }
+ }
+#endif
///
/// Verifica caricamento dizionario ConfigData
diff --git a/MP.SPEC/MP.SPEC.csproj b/MP.SPEC/MP.SPEC.csproj
index e2f08baa..4f385d7b 100644
--- a/MP.SPEC/MP.SPEC.csproj
+++ b/MP.SPEC/MP.SPEC.csproj
@@ -5,7 +5,7 @@
enable
enable
MP.SPEC
- 8.16.2605.2911
+ 8.16.2605.2912
1800a78a-6ff1-40f9-b490-87fb8bfc1394
en
diff --git a/MP.SPEC/Resources/ChangeLog.html b/MP.SPEC/Resources/ChangeLog.html
index 343ce97c..26e66a60 100644
--- a/MP.SPEC/Resources/ChangeLog.html
+++ b/MP.SPEC/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo MAPOSPEC
-
Versione: 8.16.2605.2911
+ Versione: 8.16.2605.2912
Note di rilascio:
-
diff --git a/MP.SPEC/Resources/VersNum.txt b/MP.SPEC/Resources/VersNum.txt
index 5bba24a5..a0cc7bd5 100644
--- a/MP.SPEC/Resources/VersNum.txt
+++ b/MP.SPEC/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2911
+8.16.2605.2912
diff --git a/MP.SPEC/Resources/manifest.xml b/MP.SPEC/Resources/manifest.xml
index 099b2cd1..c6942b53 100644
--- a/MP.SPEC/Resources/manifest.xml
+++ b/MP.SPEC/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2911
+ 8.16.2605.2912
https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/MP.SPEC.zip
https://nexus.steamware.net/repository/SWS/MP-SPEC/stable/LAST/ChangeLog.html
false
diff --git a/MP.Stats/MP.Stats.csproj b/MP.Stats/MP.Stats.csproj
index 5a54039d..75f6846d 100644
--- a/MP.Stats/MP.Stats.csproj
+++ b/MP.Stats/MP.Stats.csproj
@@ -4,7 +4,7 @@
net8.0
MP.Stats
826e877c-ba70-4253-84cb-d0b1cafd4440
- 8.16.2605.2909
+ 8.16.2605.2911
true
en
diff --git a/MP.Stats/Resources/ChangeLog.html b/MP.Stats/Resources/ChangeLog.html
index 72786f6f..91b4a17f 100644
--- a/MP.Stats/Resources/ChangeLog.html
+++ b/MP.Stats/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
Modulo statistiche MAPO
-
Versione: 8.16.2605.2909
+ Versione: 8.16.2605.2911
Note di rilascio:
diff --git a/MP.Stats/Resources/VersNum.txt b/MP.Stats/Resources/VersNum.txt
index b14ae2f3..5bba24a5 100644
--- a/MP.Stats/Resources/VersNum.txt
+++ b/MP.Stats/Resources/VersNum.txt
@@ -1 +1 @@
-8.16.2605.2909
+8.16.2605.2911
diff --git a/MP.Stats/Resources/manifest.xml b/MP.Stats/Resources/manifest.xml
index fe4bccc0..12a79c96 100644
--- a/MP.Stats/Resources/manifest.xml
+++ b/MP.Stats/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 8.16.2605.2909
+ 8.16.2605.2911
https://nexus.steamware.net/repository/SWS/MP-STATS/stable/LAST/MP.Stats.zip
https://nexus.steamware.net/repository/SWS/MP-STATS/stable/LAST/ChangeLog.html
false