Integration 2.3c3 :

- migliorato controllo dati macchina.
This commit is contained in:
Dario Sassi
2021-03-17 07:46:15 +00:00
parent 23c1772b9d
commit d1e56ba63f
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -1284,6 +1284,8 @@ namespace ib.essetre.integration.egaltech
foreach ( DataRow row in table.Rows) {
String Key = row["key"].ToString() ;
String Value = row["value"].ToString() ;
if ( string.IsNullOrWhiteSpace( Value))
Value = "0" ;
tw.WriteLine( " " + Key + "=" + Value + ",") ;
}
}
@@ -1297,6 +1299,8 @@ namespace ib.essetre.integration.egaltech
foreach ( DataRow row in table.Rows) {
String Key = row["key"].ToString() ;
String Value = row["value"].ToString() ;
if ( string.IsNullOrWhiteSpace( Value))
Value = "0" ;
tw.WriteLine( " " + Key + "=" + Value + ",") ;
}
}
@@ -1313,6 +1317,8 @@ namespace ib.essetre.integration.egaltech
String Group = row["group"].ToString();
String Key = row["key"].ToString();
String Value = row["value"].ToString();
if ( string.IsNullOrWhiteSpace( Value))
Value = "0" ;
tw.WriteLine(" " + Group + "_" + Key + "=" + Value + ",");
}
}
@@ -36,5 +36,5 @@ using System.Runtime.InteropServices;
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// usando l'asterisco '*' come illustrato di seguito:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.3.2")]
[assembly: AssemblyFileVersion("2.3.3.2")]
[assembly: AssemblyVersion("2.3.3.3")]
[assembly: AssemblyFileVersion("2.3.3.3")]