diff --git a/src/Banquale/Banquale/Platforms/MacCatalyst/AppDelegate.cs b/src/Banquale/Banquale/Platforms/MacCatalyst/AppDelegate.cs deleted file mode 100644 index a637ab1..0000000 --- a/src/Banquale/Banquale/Platforms/MacCatalyst/AppDelegate.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Foundation; - -namespace Banquale; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} - diff --git a/src/Banquale/Banquale/Platforms/MacCatalyst/Info.plist b/src/Banquale/Banquale/Platforms/MacCatalyst/Info.plist deleted file mode 100644 index 0690e47..0000000 --- a/src/Banquale/Banquale/Platforms/MacCatalyst/Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - UIDeviceFamily - - 1 - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - diff --git a/src/Banquale/Banquale/Platforms/MacCatalyst/Program.cs b/src/Banquale/Banquale/Platforms/MacCatalyst/Program.cs deleted file mode 100644 index 9096b85..0000000 --- a/src/Banquale/Banquale/Platforms/MacCatalyst/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -using ObjCRuntime; -using UIKit; - -namespace Banquale; - -public class Program -{ - // This is the main entry point of the application. - static void Main(string[] args) - { - // if you want to use a different Application Delegate class from "AppDelegate" - // you can specify it here. - UIApplication.Main(args, null, typeof(AppDelegate)); - } -} - diff --git a/src/Banquale/Banquale/Platforms/Tizen/Main.cs b/src/Banquale/Banquale/Platforms/Tizen/Main.cs deleted file mode 100644 index 0c5641d..0000000 --- a/src/Banquale/Banquale/Platforms/Tizen/Main.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using Microsoft.Maui; -using Microsoft.Maui.Hosting; - -namespace Banquale; - -class Program : MauiApplication -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - - static void Main(string[] args) - { - var app = new Program(); - app.Run(args); - } -} - diff --git a/src/Banquale/Banquale/Platforms/Tizen/tizen-manifest.xml b/src/Banquale/Banquale/Platforms/Tizen/tizen-manifest.xml deleted file mode 100644 index 5ddbe54..0000000 --- a/src/Banquale/Banquale/Platforms/Tizen/tizen-manifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - maui-appicon-placeholder - - - - - http://tizen.org/privilege/internet - - - - diff --git a/src/Banquale/Banquale/Platforms/Windows/App.xaml b/src/Banquale/Banquale/Platforms/Windows/App.xaml deleted file mode 100644 index a6d37ce..0000000 --- a/src/Banquale/Banquale/Platforms/Windows/App.xaml +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/src/Banquale/Banquale/Platforms/Windows/App.xaml.cs b/src/Banquale/Banquale/Platforms/Windows/App.xaml.cs deleted file mode 100644 index be5c6c7..0000000 --- a/src/Banquale/Banquale/Platforms/Windows/App.xaml.cs +++ /dev/null @@ -1,25 +0,0 @@ -using Microsoft.UI.Xaml; - -// To learn more about WinUI, the WinUI project structure, -// and more about our project templates, see: http://aka.ms/winui-project-info. - -namespace Banquale.WinUI; - -/// -/// Provides application-specific behavior to supplement the default Application class. -/// -public partial class App : MauiWinUIApplication -{ - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } - - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} - - diff --git a/src/Banquale/Banquale/Platforms/Windows/Package.appxmanifest b/src/Banquale/Banquale/Platforms/Windows/Package.appxmanifest deleted file mode 100644 index 7a784ce..0000000 --- a/src/Banquale/Banquale/Platforms/Windows/Package.appxmanifest +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - $placeholder$ - User Name - $placeholder$.png - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Banquale/Banquale/Platforms/Windows/app.manifest b/src/Banquale/Banquale/Platforms/Windows/app.manifest deleted file mode 100644 index 787d3c3..0000000 --- a/src/Banquale/Banquale/Platforms/Windows/app.manifest +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - true/PM - PerMonitorV2, PerMonitor - - - - diff --git a/src/Banquale/Banquale/Platforms/iOS/AppDelegate.cs b/src/Banquale/Banquale/Platforms/iOS/AppDelegate.cs deleted file mode 100644 index a637ab1..0000000 --- a/src/Banquale/Banquale/Platforms/iOS/AppDelegate.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Foundation; - -namespace Banquale; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} - diff --git a/src/Banquale/Banquale/Platforms/iOS/Info.plist b/src/Banquale/Banquale/Platforms/iOS/Info.plist deleted file mode 100644 index 358337b..0000000 --- a/src/Banquale/Banquale/Platforms/iOS/Info.plist +++ /dev/null @@ -1,32 +0,0 @@ - - - - - LSRequiresIPhoneOS - - UIDeviceFamily - - 1 - 2 - - UIRequiredDeviceCapabilities - - arm64 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - XSAppIconAssets - Assets.xcassets/appicon.appiconset - - diff --git a/src/Banquale/Banquale/Platforms/iOS/Program.cs b/src/Banquale/Banquale/Platforms/iOS/Program.cs deleted file mode 100644 index 9096b85..0000000 --- a/src/Banquale/Banquale/Platforms/iOS/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -using ObjCRuntime; -using UIKit; - -namespace Banquale; - -public class Program -{ - // This is the main entry point of the application. - static void Main(string[] args) - { - // if you want to use a different Application Delegate class from "AppDelegate" - // you can specify it here. - UIApplication.Main(args, null, typeof(AppDelegate)); - } -} -