about summary refs log tree commit diff
path: root/MatrixUtils.Desktop/MainWindow.axaml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MatrixUtils.Desktop/MainWindow.axaml (renamed from MatrixRoomUtils.Desktop/MainWindow.axaml)8
-rw-r--r--MatrixUtils.Desktop/MainWindow.axaml.cs (renamed from MatrixRoomUtils.Desktop/MainWindow.axaml.cs)14
2 files changed, 11 insertions, 11 deletions
diff --git a/MatrixRoomUtils.Desktop/MainWindow.axaml b/MatrixUtils.Desktop/MainWindow.axaml

index dd807b5..6457678 100644 --- a/MatrixRoomUtils.Desktop/MainWindow.axaml +++ b/MatrixUtils.Desktop/MainWindow.axaml
@@ -2,11 +2,11 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:desktop="clr-namespace:MatrixRoomUtils.Desktop" - xmlns:components="clr-namespace:MatrixRoomUtils.Desktop.Components" + xmlns:desktop="clr-namespace:MatrixUtils.Desktop" + xmlns:components="clr-namespace:MatrixUtils.Desktop.Components" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" - x:Class="MatrixRoomUtils.Desktop.MainWindow" - Title="Rory&amp;::MatrixRoomUtils"> + x:Class="MatrixUtils.Desktop.MainWindow" + Title="Rory&amp;::MatrixUtils"> <!-- <Interaction.Behaviors> --> <!-- <EventTriggerBehavior EventName="Loaded"> --> <!-- <InvokeCommandAction Command="{Binding LoadedCommand}"></InvokeCommandAction> --> diff --git a/MatrixRoomUtils.Desktop/MainWindow.axaml.cs b/MatrixUtils.Desktop/MainWindow.axaml.cs
index 6ef573e..562ab1a 100644 --- a/MatrixRoomUtils.Desktop/MainWindow.axaml.cs +++ b/MatrixUtils.Desktop/MainWindow.axaml.cs
@@ -1,25 +1,25 @@ using Avalonia.Controls; using Avalonia.Interactivity; -using MatrixRoomUtils.Abstractions; -using MatrixRoomUtils.Desktop.Components; +using MatrixUtils.Abstractions; +using MatrixUtils.Desktop.Components; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; -namespace MatrixRoomUtils.Desktop; +namespace MatrixUtils.Desktop; public partial class MainWindow : Window { private readonly ILogger<MainWindow> _logger; private readonly IServiceScopeFactory _scopeFactory; - private readonly MRUStorageWrapper _storageWrapper; - private readonly MRUDesktopConfiguration _configuration; + private readonly RMUStorageWrapper _storageWrapper; + private readonly RMUDesktopConfiguration _configuration; public static MainWindow Instance { get; private set; } = null!; public MainWindow(ILogger<MainWindow> logger, IServiceScopeFactory scopeFactory, SentryService _) { Instance = this; _logger = logger; _scopeFactory = scopeFactory; - _configuration = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<MRUDesktopConfiguration>(); - _storageWrapper = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<MRUStorageWrapper>(); + _configuration = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<RMUDesktopConfiguration>(); + _storageWrapper = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<RMUStorageWrapper>(); _logger.LogInformation("Initialising MainWindow");