forked from ProfessionalCSharp/ProfessionalCSharp7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
46 lines (40 loc) · 1.28 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Console;
using System;
using System.Threading.Tasks;
namespace LoggingScopeSample
{
class Program
{
private static string s_url = "https://csharp.christiannagel.com";
static async Task Main(string[] args)
{
if (args.Length == 1)
{
s_url = args[0];
}
RegisterServices();
await RunSampleAsync();
Console.ReadLine();
}
static async Task RunSampleAsync()
{
var controller = AppServices.GetService<SampleController>();
await controller.NetworkRequestSampleAsync(s_url);
}
static void RegisterServices()
{
var services = new ServiceCollection();
services.AddLogging(builder =>
{
builder.AddEventSourceLogger();
builder.AddConsole(options => options.IncludeScopes = true);
builder.AddDebug();
});
services.AddScoped<SampleController>();
AppServices = services.BuildServiceProvider();
}
public static IServiceProvider AppServices { get; private set; }
}
}