From 9b734179638eb94beeb3db864158bcf654931901 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 30 Mar 2022 14:57:05 +0200 Subject: [PATCH] some validation fixes after the release --- ENI2/ENI2.csproj | 4 ++-- ENI2/Excel/ExcelReader.cs | 2 +- bsmd.database/Properties/AssemblyProductInfo.cs | 2 +- bsmd.database/Properties/AssemblyProjectInfo.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ENI2/ENI2.csproj b/ENI2/ENI2.csproj index 09da670d..cf7b29c0 100644 --- a/ENI2/ENI2.csproj +++ b/ENI2/ENI2.csproj @@ -36,8 +36,8 @@ 5.4.0.0 true publish.html - 17 - 7.0.0.17 + 0 + 7.0.1.0 false true true diff --git a/ENI2/Excel/ExcelReader.cs b/ENI2/Excel/ExcelReader.cs index c1157675..5828924b 100644 --- a/ENI2/Excel/ExcelReader.cs +++ b/ENI2/Excel/ExcelReader.cs @@ -402,7 +402,7 @@ namespace ENI2.Excel if (date != null) { - if ((date.Value < new DateTime(1899, 1, 1)) || (date.Value > new DateTime(2030, 1, 1))) + if ((date.Value < new DateTime(1899, 1, 1)) || (date.Value > new DateTime(2130, 1, 1))) { date = null; // this can't be right } diff --git a/bsmd.database/Properties/AssemblyProductInfo.cs b/bsmd.database/Properties/AssemblyProductInfo.cs index 6e8330e2..6c462a7b 100644 --- a/bsmd.database/Properties/AssemblyProductInfo.cs +++ b/bsmd.database/Properties/AssemblyProductInfo.cs @@ -2,6 +2,6 @@ [assembly: AssemblyCompany("schick Informatik")] [assembly: AssemblyProduct("BSMD NSW interface")] -[assembly: AssemblyInformationalVersion("7.0.0")] +[assembly: AssemblyInformationalVersion("7.0.1")] [assembly: AssemblyCopyright("Copyright © 2014-2022 schick Informatik")] [assembly: AssemblyTrademark("")] \ No newline at end of file diff --git a/bsmd.database/Properties/AssemblyProjectInfo.cs b/bsmd.database/Properties/AssemblyProjectInfo.cs index ee7ffbc1..b1f00991 100644 --- a/bsmd.database/Properties/AssemblyProjectInfo.cs +++ b/bsmd.database/Properties/AssemblyProjectInfo.cs @@ -1,4 +1,4 @@ using System.Reflection; -[assembly: AssemblyVersion("7.0.0.*")] +[assembly: AssemblyVersion("7.0.1.*")]