We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd8f3e commit 430a578Copy full SHA for 430a578
src/templates/MyProject.Scheduler/Worker.cs
@@ -1,8 +1,9 @@
1
-using System.Diagnostics;
+using System;
2
+using System.Diagnostics;
3
4
namespace MyProject.Scheduler;
5
6
internal class Worker
7
{
- public void Run() => Trace.WriteLine("Hello world!");
8
+ public void Run() => Console.WriteLine("Hello world!");
9
}
0 commit comments