Version bump and avoid sending empty warnings

This commit is contained in:
Daniel Schick 2023-07-17 08:00:16 +02:00
parent 771032b137
commit 68b52f0296
3 changed files with 4 additions and 4 deletions

View File

@ -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();

View File

@ -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("")]

View File

@ -1,4 +1,4 @@
using System.Reflection;
[assembly: AssemblyVersion("7.12.0.*")]
[assembly: AssemblyVersion("7.13.0.*")]