diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-08-06 09:19:53 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2018-08-06 09:19:53 +0300 |
| commit | cd22de677cf942c8bf82c8bbb6e02ee5630076eb (patch) | |
| tree | 5fde4c94370c174e4aac3f06cf89dbb09e51b9a8 /Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs | |
| parent | 4fb8ff57dcd3bce39ac54d4c52cef091df8c570b (diff) | |
| download | Tango-cd22de677cf942c8bf82c8bbb6e02ee5630076eb.tar.gz Tango-cd22de677cf942c8bf82c8bbb6e02ee5630076eb.zip | |
Working on SQL Examiner Reports Loading..
Diffstat (limited to 'Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs b/Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs index 5b4363c6e..8ec05c1e4 100644 --- a/Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs +++ b/Software/Visual_Studio/Tango.SQLExaminer/ExaminerProcess.cs @@ -41,12 +41,12 @@ namespace Tango.SQLExaminer p.StartInfo.RedirectStandardOutput = true; p.StartInfo.RedirectStandardError = true; - p.OutputDataReceived += (sender, args) => + p.OutputDataReceived += (sender, args) => { sb.AppendLine(args.Data); Progress?.Invoke(this, args.Data); }; - p.ErrorDataReceived += (sender, args) => + p.ErrorDataReceived += (sender, args) => { sb.AppendLine(args.Data); Progress?.Invoke(this, args.Data); |
