From 4b4ca3a308984fece7517b040c9ac3319629c664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9leste=20BARBOSA?= Date: Sat, 23 Mar 2024 11:07:04 +0100 Subject: [PATCH] =?UTF-8?q?Solution=20ajout=C3=A9e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mastermind/App.xaml | 14 + mastermind/App.xaml.cs | 12 + mastermind/AppShell.xaml | 15 + mastermind/AppShell.xaml.cs | 10 + mastermind/MainPage.xaml | 36 ++ mastermind/MainPage.xaml.cs | 25 + mastermind/MauiProgram.cs | 25 + .../Platforms/Android/AndroidManifest.xml | 6 + mastermind/Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + mastermind/Platforms/MacCatalyst/Info.plist | 38 ++ mastermind/Platforms/MacCatalyst/Program.cs | 16 + mastermind/Platforms/Tizen/Main.cs | 17 + mastermind/Platforms/Tizen/tizen-manifest.xml | 15 + mastermind/Platforms/Windows/App.xaml | 8 + mastermind/Platforms/Windows/App.xaml.cs | 25 + .../Platforms/Windows/Package.appxmanifest | 46 ++ mastermind/Platforms/Windows/app.manifest | 15 + mastermind/Platforms/iOS/AppDelegate.cs | 10 + mastermind/Platforms/iOS/Info.plist | 32 ++ mastermind/Platforms/iOS/Program.cs | 16 + mastermind/Properties/launchSettings.json | 8 + mastermind/Resources/AppIcon/appicon.svg | 4 + mastermind/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111056 bytes mastermind/Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes mastermind/Resources/Raw/AboutAssets.txt | 15 + mastermind/Resources/Splash/splash.svg | 8 + mastermind/Resources/Styles/Colors.xaml | 45 ++ mastermind/Resources/Styles/Styles.xaml | 426 ++++++++++++++++++ mastermind/mastermind.csproj | 65 +++ mastermind/mastermind.sln | 27 ++ 36 files changed, 1044 insertions(+) create mode 100644 mastermind/App.xaml create mode 100644 mastermind/App.xaml.cs create mode 100644 mastermind/AppShell.xaml create mode 100644 mastermind/AppShell.xaml.cs create mode 100644 mastermind/MainPage.xaml create mode 100644 mastermind/MainPage.xaml.cs create mode 100644 mastermind/MauiProgram.cs create mode 100644 mastermind/Platforms/Android/AndroidManifest.xml create mode 100644 mastermind/Platforms/Android/MainActivity.cs create mode 100644 mastermind/Platforms/Android/MainApplication.cs create mode 100644 mastermind/Platforms/Android/Resources/values/colors.xml create mode 100644 mastermind/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 mastermind/Platforms/MacCatalyst/Entitlements.plist create mode 100644 mastermind/Platforms/MacCatalyst/Info.plist create mode 100644 mastermind/Platforms/MacCatalyst/Program.cs create mode 100644 mastermind/Platforms/Tizen/Main.cs create mode 100644 mastermind/Platforms/Tizen/tizen-manifest.xml create mode 100644 mastermind/Platforms/Windows/App.xaml create mode 100644 mastermind/Platforms/Windows/App.xaml.cs create mode 100644 mastermind/Platforms/Windows/Package.appxmanifest create mode 100644 mastermind/Platforms/Windows/app.manifest create mode 100644 mastermind/Platforms/iOS/AppDelegate.cs create mode 100644 mastermind/Platforms/iOS/Info.plist create mode 100644 mastermind/Platforms/iOS/Program.cs create mode 100644 mastermind/Properties/launchSettings.json create mode 100644 mastermind/Resources/AppIcon/appicon.svg create mode 100644 mastermind/Resources/AppIcon/appiconfg.svg create mode 100644 mastermind/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 mastermind/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 mastermind/Resources/Images/dotnet_bot.png create mode 100644 mastermind/Resources/Raw/AboutAssets.txt create mode 100644 mastermind/Resources/Splash/splash.svg create mode 100644 mastermind/Resources/Styles/Colors.xaml create mode 100644 mastermind/Resources/Styles/Styles.xaml create mode 100644 mastermind/mastermind.csproj create mode 100644 mastermind/mastermind.sln diff --git a/mastermind/App.xaml b/mastermind/App.xaml new file mode 100644 index 0000000..b850e1e --- /dev/null +++ b/mastermind/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/mastermind/App.xaml.cs b/mastermind/App.xaml.cs new file mode 100644 index 0000000..ad9efe4 --- /dev/null +++ b/mastermind/App.xaml.cs @@ -0,0 +1,12 @@ +namespace mastermind +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/mastermind/AppShell.xaml b/mastermind/AppShell.xaml new file mode 100644 index 0000000..f9c895b --- /dev/null +++ b/mastermind/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/mastermind/AppShell.xaml.cs b/mastermind/AppShell.xaml.cs new file mode 100644 index 0000000..0fcecd0 --- /dev/null +++ b/mastermind/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace mastermind +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/mastermind/MainPage.xaml b/mastermind/MainPage.xaml new file mode 100644 index 0000000..031f06f --- /dev/null +++ b/mastermind/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +