From bd18b96ce4882b37c669a47bbd36e0e51e8cdc46 Mon Sep 17 00:00:00 2001 From: Jeff Leung Date: Sun, 11 Sep 2022 11:58:13 -0700 Subject: [PATCH] Actually commit the files --- MFACodeGenerator.MAUI/App.xaml | 14 + MFACodeGenerator.MAUI/App.xaml.cs | 12 + MFACodeGenerator.MAUI/AppShell.xaml | 14 + MFACodeGenerator.MAUI/AppShell.xaml.cs | 10 + .../MFACodeGenerator.MAUI.csproj | 56 +++ MFACodeGenerator.MAUI/MainPage.xaml | 30 ++ MFACodeGenerator.MAUI/MainPage.xaml.cs | 44 ++ MFACodeGenerator.MAUI/MauiProgram.cs | 19 + .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Info.plist | 30 ++ .../Platforms/MacCatalyst/Program.cs | 16 + MFACodeGenerator.MAUI/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + .../Platforms/Windows/App.xaml | 8 + .../Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 43 ++ .../Platforms/Windows/app.manifest | 15 + .../Platforms/iOS/AppDelegate.cs | 10 + .../Platforms/iOS/Info.plist | 32 ++ .../Platforms/iOS/Program.cs | 16 + .../Properties/launchSettings.json | 8 + .../Resources/AppIcon/appicon.svg | 4 + .../Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107152 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111048 bytes .../Resources/Images/dotnet_bot.svg | 93 +++++ .../Resources/Raw/AboutAssets.txt | 15 + .../Resources/Splash/splash.svg | 8 + .../Resources/Styles/Colors.xaml | 44 ++ .../Resources/Styles/Styles.xaml | 384 ++++++++++++++++++ 34 files changed, 1038 insertions(+) create mode 100644 MFACodeGenerator.MAUI/App.xaml create mode 100644 MFACodeGenerator.MAUI/App.xaml.cs create mode 100644 MFACodeGenerator.MAUI/AppShell.xaml create mode 100644 MFACodeGenerator.MAUI/AppShell.xaml.cs create mode 100644 MFACodeGenerator.MAUI/MFACodeGenerator.MAUI.csproj create mode 100644 MFACodeGenerator.MAUI/MainPage.xaml create mode 100644 MFACodeGenerator.MAUI/MainPage.xaml.cs create mode 100644 MFACodeGenerator.MAUI/MauiProgram.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Android/AndroidManifest.xml create mode 100644 MFACodeGenerator.MAUI/Platforms/Android/MainActivity.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Android/MainApplication.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Android/Resources/values/colors.xml create mode 100644 MFACodeGenerator.MAUI/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/MacCatalyst/Info.plist create mode 100644 MFACodeGenerator.MAUI/Platforms/MacCatalyst/Program.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Tizen/Main.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Tizen/tizen-manifest.xml create mode 100644 MFACodeGenerator.MAUI/Platforms/Windows/App.xaml create mode 100644 MFACodeGenerator.MAUI/Platforms/Windows/App.xaml.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/Windows/Package.appxmanifest create mode 100644 MFACodeGenerator.MAUI/Platforms/Windows/app.manifest create mode 100644 MFACodeGenerator.MAUI/Platforms/iOS/AppDelegate.cs create mode 100644 MFACodeGenerator.MAUI/Platforms/iOS/Info.plist create mode 100644 MFACodeGenerator.MAUI/Platforms/iOS/Program.cs create mode 100644 MFACodeGenerator.MAUI/Properties/launchSettings.json create mode 100644 MFACodeGenerator.MAUI/Resources/AppIcon/appicon.svg create mode 100644 MFACodeGenerator.MAUI/Resources/AppIcon/appiconfg.svg create mode 100644 MFACodeGenerator.MAUI/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MFACodeGenerator.MAUI/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MFACodeGenerator.MAUI/Resources/Images/dotnet_bot.svg create mode 100644 MFACodeGenerator.MAUI/Resources/Raw/AboutAssets.txt create mode 100644 MFACodeGenerator.MAUI/Resources/Splash/splash.svg create mode 100644 MFACodeGenerator.MAUI/Resources/Styles/Colors.xaml create mode 100644 MFACodeGenerator.MAUI/Resources/Styles/Styles.xaml diff --git a/MFACodeGenerator.MAUI/App.xaml b/MFACodeGenerator.MAUI/App.xaml new file mode 100644 index 0000000..783256d --- /dev/null +++ b/MFACodeGenerator.MAUI/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MFACodeGenerator.MAUI/App.xaml.cs b/MFACodeGenerator.MAUI/App.xaml.cs new file mode 100644 index 0000000..e8f82bb --- /dev/null +++ b/MFACodeGenerator.MAUI/App.xaml.cs @@ -0,0 +1,12 @@ +namespace MFACodeGenerator.MAUI +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/MFACodeGenerator.MAUI/AppShell.xaml b/MFACodeGenerator.MAUI/AppShell.xaml new file mode 100644 index 0000000..3d8c377 --- /dev/null +++ b/MFACodeGenerator.MAUI/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MFACodeGenerator.MAUI/AppShell.xaml.cs b/MFACodeGenerator.MAUI/AppShell.xaml.cs new file mode 100644 index 0000000..cf4aae7 --- /dev/null +++ b/MFACodeGenerator.MAUI/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace MFACodeGenerator.MAUI +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/MFACodeGenerator.MAUI/MFACodeGenerator.MAUI.csproj b/MFACodeGenerator.MAUI/MFACodeGenerator.MAUI.csproj new file mode 100644 index 0000000..3d179f1 --- /dev/null +++ b/MFACodeGenerator.MAUI/MFACodeGenerator.MAUI.csproj @@ -0,0 +1,56 @@ + + + + net6.0-maccatalyst + $(TargetFrameworks);net6.0-windows10.0.19041.0 + + + Exe + MFACodeGenerator.MAUI + true + true + enable + + + TOTP MFA Code Generator + + + ca.v10networks.mfacodegenerator.maui + ED21101C-8443-4102-B59C-482E95B6D974 + + + 1.0 + 1 + + 14.2 + 14.0 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + AnyCPU + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MFACodeGenerator.MAUI/MainPage.xaml b/MFACodeGenerator.MAUI/MainPage.xaml new file mode 100644 index 0000000..2725699 --- /dev/null +++ b/MFACodeGenerator.MAUI/MainPage.xaml @@ -0,0 +1,30 @@ + + + + + + + + +