From a1ebd32b3903931600122a753dadd0806c383382 Mon Sep 17 00:00:00 2001 From: DJYohann Date: Mon, 22 May 2023 11:06:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B1=20add=20projects?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Views/Views.csproj => App/App.csproj | 8 +- App/App.xaml | 15 + App/App.xaml.cs | 12 + App/AppShell.xaml | 15 + App/AppShell.xaml.cs | 10 + App/MainPage.xaml | 42 ++ App/MainPage.xaml.cs | 25 ++ App/MauiProgram.cs | 25 ++ App/Platforms/Android/AndroidManifest.xml | 6 + App/Platforms/Android/MainActivity.cs | 11 + App/Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 7 + App/Platforms/MacCatalyst/AppDelegate.cs | 10 + App/Platforms/MacCatalyst/Info.plist | 30 ++ App/Platforms/MacCatalyst/Program.cs | 16 + App/Platforms/Tizen/Main.cs | 17 + App/Platforms/Tizen/tizen-manifest.xml | 15 + App/Platforms/Windows/App.xaml | 9 + App/Platforms/Windows/App.xaml.cs | 25 ++ App/Platforms/Windows/Package.appxmanifest | 47 ++ App/Platforms/Windows/app.manifest | 16 + App/Platforms/iOS/AppDelegate.cs | 10 + App/Platforms/iOS/Info.plist | 32 ++ App/Platforms/iOS/Program.cs | 16 + App/Properties/launchSettings.json | 8 + App/Resources/AppIcon/appicon.svg | 5 + App/Resources/AppIcon/appiconfg.svg | 8 + App/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes App/Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111076 bytes App/Resources/Images/dotnet_bot.svg | 95 ++++ App/Resources/Raw/AboutAssets.txt | 17 + App/Resources/Splash/splash.svg | 9 + App/Resources/Styles/Colors.xaml | 44 ++ App/Resources/Styles/Styles.xaml | 406 ++++++++++++++++++ LeagueOfLegends.sln | 41 +- Model/Champion.cs | 151 +++++++ Model/IDataManager.cs | 53 +++ Model/LargeImage.cs | 28 ++ Model/Model.csproj | 18 + Model/Rune.cs | 69 +++ Model/RunePage.Category.cs | 17 + Model/RunePage.cs | 96 +++++ Model/Skill.cs | 63 +++ Model/Skin.cs | 83 ++++ Model/enums/ChampionClass.cs | 15 + Model/enums/RuneFamily.cs | 11 + Model/enums/SkillType.cs | 12 + Shared/IGenericDataManager.cs | 11 + Shared/Shared.csproj | 9 + StubLib/Extensions.cs | 65 +++ StubLib/StubData.Champions.cs | 216 ++++++++++ StubLib/StubData.RunePages.cs | 83 ++++ StubLib/StubData.Runes.cs | 69 +++ StubLib/StubData.Skins.cs | 128 ++++++ StubLib/StubData.cs | 35 ++ StubLib/StubLib.csproj | 12 + Tests/ConsoleTests/ConsoleTests.csproj | 20 + Tests/ConsoleTests/Program.cs | 338 +++++++++++++++ Views/App.csproj | 58 +++ 59 files changed, 2717 insertions(+), 11 deletions(-) rename Views/Views.csproj => App/App.csproj (92%) create mode 100644 App/App.xaml create mode 100644 App/App.xaml.cs create mode 100644 App/AppShell.xaml create mode 100644 App/AppShell.xaml.cs create mode 100644 App/MainPage.xaml create mode 100644 App/MainPage.xaml.cs create mode 100644 App/MauiProgram.cs create mode 100644 App/Platforms/Android/AndroidManifest.xml create mode 100644 App/Platforms/Android/MainActivity.cs create mode 100644 App/Platforms/Android/MainApplication.cs create mode 100644 App/Platforms/Android/Resources/values/colors.xml create mode 100644 App/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 App/Platforms/MacCatalyst/Info.plist create mode 100644 App/Platforms/MacCatalyst/Program.cs create mode 100644 App/Platforms/Tizen/Main.cs create mode 100644 App/Platforms/Tizen/tizen-manifest.xml create mode 100644 App/Platforms/Windows/App.xaml create mode 100644 App/Platforms/Windows/App.xaml.cs create mode 100644 App/Platforms/Windows/Package.appxmanifest create mode 100644 App/Platforms/Windows/app.manifest create mode 100644 App/Platforms/iOS/AppDelegate.cs create mode 100644 App/Platforms/iOS/Info.plist create mode 100644 App/Platforms/iOS/Program.cs create mode 100644 App/Properties/launchSettings.json create mode 100644 App/Resources/AppIcon/appicon.svg create mode 100644 App/Resources/AppIcon/appiconfg.svg create mode 100644 App/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 App/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 App/Resources/Images/dotnet_bot.svg create mode 100644 App/Resources/Raw/AboutAssets.txt create mode 100644 App/Resources/Splash/splash.svg create mode 100644 App/Resources/Styles/Colors.xaml create mode 100644 App/Resources/Styles/Styles.xaml create mode 100644 Model/Champion.cs create mode 100644 Model/IDataManager.cs create mode 100644 Model/LargeImage.cs create mode 100644 Model/Model.csproj create mode 100644 Model/Rune.cs create mode 100644 Model/RunePage.Category.cs create mode 100644 Model/RunePage.cs create mode 100644 Model/Skill.cs create mode 100644 Model/Skin.cs create mode 100644 Model/enums/ChampionClass.cs create mode 100644 Model/enums/RuneFamily.cs create mode 100644 Model/enums/SkillType.cs create mode 100644 Shared/IGenericDataManager.cs create mode 100644 Shared/Shared.csproj create mode 100644 StubLib/Extensions.cs create mode 100644 StubLib/StubData.Champions.cs create mode 100644 StubLib/StubData.RunePages.cs create mode 100644 StubLib/StubData.Runes.cs create mode 100644 StubLib/StubData.Skins.cs create mode 100644 StubLib/StubData.cs create mode 100644 StubLib/StubLib.csproj create mode 100644 Tests/ConsoleTests/ConsoleTests.csproj create mode 100644 Tests/ConsoleTests/Program.cs create mode 100644 Views/App.csproj diff --git a/Views/Views.csproj b/App/App.csproj similarity index 92% rename from Views/Views.csproj rename to App/App.csproj index f01d2bc..7eadb81 100644 --- a/Views/Views.csproj +++ b/App/App.csproj @@ -6,17 +6,17 @@ Exe - Views + App true true enable - Views + App - com.companyname.views - 4117f2dd-e862-4cb9-896a-a6a11b44f720 + com.companyname.app + db1bf273-756c-4ce6-b51c-938e0033a8ad 1.0 diff --git a/App/App.xaml b/App/App.xaml new file mode 100644 index 0000000..a4c1bcf --- /dev/null +++ b/App/App.xaml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/App/App.xaml.cs b/App/App.xaml.cs new file mode 100644 index 0000000..2a581ef --- /dev/null +++ b/App/App.xaml.cs @@ -0,0 +1,12 @@ +namespace App; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} + diff --git a/App/AppShell.xaml b/App/AppShell.xaml new file mode 100644 index 0000000..11814e7 --- /dev/null +++ b/App/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/App/AppShell.xaml.cs b/App/AppShell.xaml.cs new file mode 100644 index 0000000..60f8ec8 --- /dev/null +++ b/App/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace App; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} + diff --git a/App/MainPage.xaml b/App/MainPage.xaml new file mode 100644 index 0000000..150f346 --- /dev/null +++ b/App/MainPage.xaml @@ -0,0 +1,42 @@ + + + + + + + + +