From ebed4c9c2f4c5388dc0c5d890ebb1a660d59062b Mon Sep 17 00:00:00 2001 From: "jeremy.mouyon" Date: Sat, 23 Mar 2024 08:18:35 +0100 Subject: [PATCH] Premier push VS --- Qwirkle/Qwirkle.sln | 27 ++ Qwirkle/Qwirkle/App.xaml | 14 + Qwirkle/Qwirkle/App.xaml.cs | 12 + Qwirkle/Qwirkle/AppShell.xaml | 15 + Qwirkle/Qwirkle/AppShell.xaml.cs | 10 + Qwirkle/Qwirkle/MainPage.xaml | 36 ++ Qwirkle/Qwirkle/MainPage.xaml.cs | 25 + Qwirkle/Qwirkle/MauiProgram.cs | 25 + .../Platforms/Android/AndroidManifest.xml | 6 + .../Qwirkle/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 + .../Qwirkle/Platforms/MacCatalyst/Info.plist | 38 ++ .../Qwirkle/Platforms/MacCatalyst/Program.cs | 16 + Qwirkle/Qwirkle/Platforms/Tizen/Main.cs | 17 + .../Platforms/Tizen/tizen-manifest.xml | 15 + Qwirkle/Qwirkle/Platforms/Windows/App.xaml | 8 + Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs | 25 + .../Platforms/Windows/Package.appxmanifest | 46 ++ .../Qwirkle/Platforms/Windows/app.manifest | 15 + Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs | 10 + Qwirkle/Qwirkle/Platforms/iOS/Info.plist | 32 ++ Qwirkle/Qwirkle/Platforms/iOS/Program.cs | 16 + .../Qwirkle/Properties/launchSettings.json | 8 + Qwirkle/Qwirkle/Qwirkle.csproj | 65 +++ Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg | 4 + .../Qwirkle/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111056 bytes .../Qwirkle/Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt | 15 + Qwirkle/Qwirkle/Resources/Splash/splash.svg | 8 + Qwirkle/Qwirkle/Resources/Styles/Colors.xaml | 45 ++ Qwirkle/Qwirkle/Resources/Styles/Styles.xaml | 426 ++++++++++++++++++ 36 files changed, 1044 insertions(+) create mode 100644 Qwirkle/Qwirkle.sln create mode 100644 Qwirkle/Qwirkle/App.xaml create mode 100644 Qwirkle/Qwirkle/App.xaml.cs create mode 100644 Qwirkle/Qwirkle/AppShell.xaml create mode 100644 Qwirkle/Qwirkle/AppShell.xaml.cs create mode 100644 Qwirkle/Qwirkle/MainPage.xaml create mode 100644 Qwirkle/Qwirkle/MainPage.xaml.cs create mode 100644 Qwirkle/Qwirkle/MauiProgram.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Android/AndroidManifest.xml create mode 100644 Qwirkle/Qwirkle/Platforms/Android/MainActivity.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Android/MainApplication.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Android/Resources/values/colors.xml create mode 100644 Qwirkle/Qwirkle/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Qwirkle/Qwirkle/Platforms/MacCatalyst/Entitlements.plist create mode 100644 Qwirkle/Qwirkle/Platforms/MacCatalyst/Info.plist create mode 100644 Qwirkle/Qwirkle/Platforms/MacCatalyst/Program.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Tizen/Main.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Tizen/tizen-manifest.xml create mode 100644 Qwirkle/Qwirkle/Platforms/Windows/App.xaml create mode 100644 Qwirkle/Qwirkle/Platforms/Windows/App.xaml.cs create mode 100644 Qwirkle/Qwirkle/Platforms/Windows/Package.appxmanifest create mode 100644 Qwirkle/Qwirkle/Platforms/Windows/app.manifest create mode 100644 Qwirkle/Qwirkle/Platforms/iOS/AppDelegate.cs create mode 100644 Qwirkle/Qwirkle/Platforms/iOS/Info.plist create mode 100644 Qwirkle/Qwirkle/Platforms/iOS/Program.cs create mode 100644 Qwirkle/Qwirkle/Properties/launchSettings.json create mode 100644 Qwirkle/Qwirkle/Qwirkle.csproj create mode 100644 Qwirkle/Qwirkle/Resources/AppIcon/appicon.svg create mode 100644 Qwirkle/Qwirkle/Resources/AppIcon/appiconfg.svg create mode 100644 Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Qwirkle/Qwirkle/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Qwirkle/Qwirkle/Resources/Images/dotnet_bot.png create mode 100644 Qwirkle/Qwirkle/Resources/Raw/AboutAssets.txt create mode 100644 Qwirkle/Qwirkle/Resources/Splash/splash.svg create mode 100644 Qwirkle/Qwirkle/Resources/Styles/Colors.xaml create mode 100644 Qwirkle/Qwirkle/Resources/Styles/Styles.xaml diff --git a/Qwirkle/Qwirkle.sln b/Qwirkle/Qwirkle.sln new file mode 100644 index 0000000..25066b3 --- /dev/null +++ b/Qwirkle/Qwirkle.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qwirkle", "Qwirkle\Qwirkle.csproj", "{DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Build.0 = Release|Any CPU + {DCE2FAE9-9A3A-452E-AFB1-BE3DC5E62BDF}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0660E7F6-D4AA-4FCC-B0DB-3996CA1580BD} + EndGlobalSection +EndGlobal diff --git a/Qwirkle/Qwirkle/App.xaml b/Qwirkle/Qwirkle/App.xaml new file mode 100644 index 0000000..4756383 --- /dev/null +++ b/Qwirkle/Qwirkle/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Qwirkle/Qwirkle/App.xaml.cs b/Qwirkle/Qwirkle/App.xaml.cs new file mode 100644 index 0000000..0776ad2 --- /dev/null +++ b/Qwirkle/Qwirkle/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Qwirkle +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/Qwirkle/Qwirkle/AppShell.xaml b/Qwirkle/Qwirkle/AppShell.xaml new file mode 100644 index 0000000..3b3168a --- /dev/null +++ b/Qwirkle/Qwirkle/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/Qwirkle/Qwirkle/AppShell.xaml.cs b/Qwirkle/Qwirkle/AppShell.xaml.cs new file mode 100644 index 0000000..0d3dcd4 --- /dev/null +++ b/Qwirkle/Qwirkle/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Qwirkle +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/Qwirkle/Qwirkle/MainPage.xaml b/Qwirkle/Qwirkle/MainPage.xaml new file mode 100644 index 0000000..f7fb2ff --- /dev/null +++ b/Qwirkle/Qwirkle/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +