Launching server.

This commit is contained in:
Burak Kaan Köse
2024-07-22 11:05:04 +02:00
parent 495885e006
commit 2fbcf8e104
6 changed files with 86 additions and 10 deletions

View File

@@ -60,6 +60,11 @@ namespace Wino
m_ShellFrame.Navigate(typeof(AppShell));
m_Window.Activate();
// Launch server
var serverConnectionManager = Services.GetService<IWinoServerConnectionManager>();
await serverConnectionManager.ConnectAsync();
}
private void ConfigureWindow()

View File

@@ -23,10 +23,6 @@ using Wino.Domain.Models.Folders;
using Wino.Domain.Interfaces;
using Wino.Domain.Models.MailItem;
#if NET8_0
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls.Primitives;