From 6e8465b1a91170b39942e736538d01ebaa22e334 Mon Sep 17 00:00:00 2001 From: Louwar Date: Tue, 5 Sep 2023 14:24:14 +0200 Subject: [PATCH] Init (main): create project --- BookApp/BookApp.sln | 27 ++ BookApp/BookApp/App.xaml | 14 + BookApp/BookApp/App.xaml.cs | 12 + BookApp/BookApp/AppShell.xaml | 14 + BookApp/BookApp/AppShell.xaml.cs | 10 + BookApp/BookApp/BookApp.csproj | 55 +++ BookApp/BookApp/MainPage.xaml | 41 ++ BookApp/BookApp/MainPage.xaml.cs | 24 ++ BookApp/BookApp/MauiProgram.cs | 25 ++ .../Platforms/Android/AndroidManifest.xml | 6 + .../BookApp/Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../BookApp/Platforms/MacCatalyst/Info.plist | 30 ++ .../BookApp/Platforms/MacCatalyst/Program.cs | 16 + BookApp/BookApp/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + BookApp/BookApp/Platforms/Windows/App.xaml | 8 + BookApp/BookApp/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ .../BookApp/Platforms/Windows/app.manifest | 15 + BookApp/BookApp/Platforms/iOS/AppDelegate.cs | 10 + BookApp/BookApp/Platforms/iOS/Info.plist | 32 ++ BookApp/BookApp/Platforms/iOS/Program.cs | 16 + .../BookApp/Properties/launchSettings.json | 8 + BookApp/BookApp/Resources/AppIcon/appicon.svg | 4 + .../BookApp/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107144 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111072 bytes .../BookApp/Resources/Images/dotnet_bot.svg | 93 ++++ BookApp/BookApp/Resources/Raw/AboutAssets.txt | 15 + BookApp/BookApp/Resources/Splash/splash.svg | 8 + BookApp/BookApp/Resources/Styles/Colors.xaml | 44 ++ BookApp/BookApp/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 35 files changed, 1085 insertions(+) create mode 100644 BookApp/BookApp.sln create mode 100644 BookApp/BookApp/App.xaml create mode 100644 BookApp/BookApp/App.xaml.cs create mode 100644 BookApp/BookApp/AppShell.xaml create mode 100644 BookApp/BookApp/AppShell.xaml.cs create mode 100644 BookApp/BookApp/BookApp.csproj create mode 100644 BookApp/BookApp/MainPage.xaml create mode 100644 BookApp/BookApp/MainPage.xaml.cs create mode 100644 BookApp/BookApp/MauiProgram.cs create mode 100644 BookApp/BookApp/Platforms/Android/AndroidManifest.xml create mode 100644 BookApp/BookApp/Platforms/Android/MainActivity.cs create mode 100644 BookApp/BookApp/Platforms/Android/MainApplication.cs create mode 100644 BookApp/BookApp/Platforms/Android/Resources/values/colors.xml create mode 100644 BookApp/BookApp/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 BookApp/BookApp/Platforms/MacCatalyst/Info.plist create mode 100644 BookApp/BookApp/Platforms/MacCatalyst/Program.cs create mode 100644 BookApp/BookApp/Platforms/Tizen/Main.cs create mode 100644 BookApp/BookApp/Platforms/Tizen/tizen-manifest.xml create mode 100644 BookApp/BookApp/Platforms/Windows/App.xaml create mode 100644 BookApp/BookApp/Platforms/Windows/App.xaml.cs create mode 100644 BookApp/BookApp/Platforms/Windows/Package.appxmanifest create mode 100644 BookApp/BookApp/Platforms/Windows/app.manifest create mode 100644 BookApp/BookApp/Platforms/iOS/AppDelegate.cs create mode 100644 BookApp/BookApp/Platforms/iOS/Info.plist create mode 100644 BookApp/BookApp/Platforms/iOS/Program.cs create mode 100644 BookApp/BookApp/Properties/launchSettings.json create mode 100644 BookApp/BookApp/Resources/AppIcon/appicon.svg create mode 100644 BookApp/BookApp/Resources/AppIcon/appiconfg.svg create mode 100644 BookApp/BookApp/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 BookApp/BookApp/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 BookApp/BookApp/Resources/Images/dotnet_bot.svg create mode 100644 BookApp/BookApp/Resources/Raw/AboutAssets.txt create mode 100644 BookApp/BookApp/Resources/Splash/splash.svg create mode 100644 BookApp/BookApp/Resources/Styles/Colors.xaml create mode 100644 BookApp/BookApp/Resources/Styles/Styles.xaml diff --git a/BookApp/BookApp.sln b/BookApp/BookApp.sln new file mode 100644 index 0000000..3e376e8 --- /dev/null +++ b/BookApp/BookApp.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BookApp", "BookApp\BookApp.csproj", "{DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.Build.0 = Release|Any CPU + {DBD6BB08-83E2-42EA-A28C-32DB6959E4B5}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {27FCF0C7-3613-4FC6-9E95-2EEFB171F0F4} + EndGlobalSection +EndGlobal diff --git a/BookApp/BookApp/App.xaml b/BookApp/BookApp/App.xaml new file mode 100644 index 0000000..1a5c6d1 --- /dev/null +++ b/BookApp/BookApp/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/BookApp/BookApp/App.xaml.cs b/BookApp/BookApp/App.xaml.cs new file mode 100644 index 0000000..f7c4815 --- /dev/null +++ b/BookApp/BookApp/App.xaml.cs @@ -0,0 +1,12 @@ +namespace BookApp +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/BookApp/BookApp/AppShell.xaml b/BookApp/BookApp/AppShell.xaml new file mode 100644 index 0000000..4df8add --- /dev/null +++ b/BookApp/BookApp/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/BookApp/BookApp/AppShell.xaml.cs b/BookApp/BookApp/AppShell.xaml.cs new file mode 100644 index 0000000..041df04 --- /dev/null +++ b/BookApp/BookApp/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace BookApp +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/BookApp/BookApp/BookApp.csproj b/BookApp/BookApp/BookApp.csproj new file mode 100644 index 0000000..460126f --- /dev/null +++ b/BookApp/BookApp/BookApp.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + BookApp + true + true + enable + + + BookApp + + + com.companyname.bookapp + 1b9bfc70-0a6f-4c21-88bd-c66f983a30a2 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BookApp/BookApp/MainPage.xaml b/BookApp/BookApp/MainPage.xaml new file mode 100644 index 0000000..b2934fb --- /dev/null +++ b/BookApp/BookApp/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +