Hello,
i try to use a console application written in .NET (C# or VB.net).
This program is very simple to test the output value like following code:
Module Module1
Sub Main()
Console.WriteLine("Finish Time: " & DateTime.Now.ToString())
End Sub
End Module
If i run this little code i get the message.
If i run this program with VisualCron the Output window is always empty. I thought every Console.WriteLine Output will be displayed in the Task Output area on visual Cron?
So can you give me a short introduce how i can get messages from the console and show it on the output area?
Thanks a lot.
PS: I need the Output values to send an Email or to report some errors occurs in the console application.