Version bump and avoid sending empty warnings
This commit is contained in:
parent
771032b137
commit
68b52f0296
@ -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();
|
||||
|
||||
@ -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("")]
|
||||
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("7.12.0.*")]
|
||||
[assembly: AssemblyVersion("7.13.0.*")]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user