-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathApp.xaml.cs
50 lines (43 loc) · 1.6 KB
/
App.xaml.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
47
48
49
50
using System;
using System.Reflection;
using System.Windows;
using fs2ff.SimConnect;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace fs2ff
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App
{
private static readonly IHost Host = new HostBuilder()
.ConfigureServices(ConfigureServices)
.Build();
protected override async void OnExit(ExitEventArgs e)
{
await Host.StopAsync(TimeSpan.FromSeconds(3));
Host.Dispose();
base.OnExit(e);
}
protected override async void OnStartup(StartupEventArgs e)
{
await Host.StartAsync();
base.OnStartup(e);
}
public static Version AssemblyVersion => Assembly.GetEntryAssembly()!.GetName().Version!;
public static string InformationalVersion => "v" + (Assembly
.GetEntryAssembly()?
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?
.InformationalVersion ?? "0.0.0");
public static T GetRequiredService<T>() where T : class => Host.Services.GetRequiredService<T>();
public static void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<MainViewModel>();
services.AddSingleton<SimConnectAdapter>();
services.AddSingleton<DataSender>();
services.AddSingleton<IpDetectionService>();
services.AddHostedService(provider => provider.GetRequiredService<IpDetectionService>());
}
}
}