From 991f52e87ed19e49e266e45a0ee8e7cfb4ff57d0 Mon Sep 17 00:00:00 2001 From: Jeddunk Date: Sat, 23 Dec 2023 20:51:30 +0100 Subject: [PATCH] Minor changes --- auto-creamapi/App.xaml.cs | 2 +- auto-creamapi/Core/{App.cs => MainApplication.cs} | 2 +- auto-creamapi/Utils/MyLogger.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename auto-creamapi/Core/{App.cs => MainApplication.cs} (90%) diff --git a/auto-creamapi/App.xaml.cs b/auto-creamapi/App.xaml.cs index 95e07c3..96ab732 100644 --- a/auto-creamapi/App.xaml.cs +++ b/auto-creamapi/App.xaml.cs @@ -10,7 +10,7 @@ namespace auto_creamapi { protected override void RegisterSetup() { - this.RegisterSetupType>(); + this.RegisterSetupType>(); } } } \ No newline at end of file diff --git a/auto-creamapi/Core/App.cs b/auto-creamapi/Core/MainApplication.cs similarity index 90% rename from auto-creamapi/Core/App.cs rename to auto-creamapi/Core/MainApplication.cs index f64d409..2201b8a 100644 --- a/auto-creamapi/Core/App.cs +++ b/auto-creamapi/Core/MainApplication.cs @@ -4,7 +4,7 @@ using MvvmCross.ViewModels; namespace auto_creamapi.Core { - public class App : MvxApplication + public class MainApplication : MvxApplication { public override void Initialize() { diff --git a/auto-creamapi/Utils/MyLogger.cs b/auto-creamapi/Utils/MyLogger.cs index a35a873..903e5a9 100644 --- a/auto-creamapi/Utils/MyLogger.cs +++ b/auto-creamapi/Utils/MyLogger.cs @@ -4,7 +4,7 @@ using Serilog.Exceptions; namespace auto_creamapi.Utils { - public class MyLogger + public static class MyLogger { public static readonly Logger Log = new LoggerConfiguration() .MinimumLevel.Debug()