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 2313722 commit a2e19b3Copy full SHA for a2e19b3
src/MagicOnion.Generator/Program.cs
@@ -10,7 +10,13 @@ public class Program : ConsoleAppBase
10
{
11
static async Task Main(string[] args)
12
13
- await Host.CreateDefaultBuilder().RunConsoleAppFrameworkAsync<Program>(args).ConfigureAwait(false);
+ await Host.CreateDefaultBuilder()
14
+ .ConfigureLogging(logging =>
15
+ {
16
+ logging.ReplaceToSimpleConsole();
17
+ })
18
+ .RunConsoleAppFrameworkAsync<Program>(args)
19
+ .ConfigureAwait(false);
20
}
21
22
public async Task RunAsync(
0 commit comments