From 68b52f0296720aa45b57221b0da7c477f55a085f Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Mon, 17 Jul 2023 08:00:16 +0200 Subject: [PATCH] Version bump and avoid sending empty warnings --- bsmd.dakosy/sftp.cs | 4 ++-- bsmd.database/Properties/AssemblyProductInfo.cs | 2 +- bsmd.database/Properties/AssemblyProjectInfo.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bsmd.dakosy/sftp.cs b/bsmd.dakosy/sftp.cs index 153e28c4..d4bdd43c 100644 --- a/bsmd.dakosy/sftp.cs +++ b/bsmd.dakosy/sftp.cs @@ -108,8 +108,8 @@ namespace bsmd.dakosy winscp.StartInfo.RedirectStandardError = true; winscp.StartInfo.CreateNoWindow = true; winscp.EnableRaisingEvents = true; - winscp.OutputDataReceived += (s, e) => _log.Debug(e.Data); - winscp.ErrorDataReceived += (s, e) => _log.Warn(e.Data); + winscp.OutputDataReceived += (s, e) => { if (!e.Data.IsNullOrEmpty()) _log.Debug(e.Data); }; + winscp.ErrorDataReceived += (s, e) => { if (!e.Data.IsNullOrEmpty()) _log.Warn(e.Data); }; winscp.Start(); winscp.BeginErrorReadLine(); winscp.BeginOutputReadLine(); diff --git a/bsmd.database/Properties/AssemblyProductInfo.cs b/bsmd.database/Properties/AssemblyProductInfo.cs index c0ffb117..72844833 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.12.0")] +[assembly: AssemblyInformationalVersion("7.13.0")] [assembly: AssemblyCopyright("Copyright © 2014-2023 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 ddc6e746..95f10891 100644 --- a/bsmd.database/Properties/AssemblyProjectInfo.cs +++ b/bsmd.database/Properties/AssemblyProjectInfo.cs @@ -1,4 +1,4 @@ using System.Reflection; -[assembly: AssemblyVersion("7.12.0.*")] +[assembly: AssemblyVersion("7.13.0.*")]