From d553b23776b8a6ed3a86b4247fffdb8bf0a52357 Mon Sep 17 00:00:00 2001 From: lobroda Date: Mon, 4 Sep 2023 09:02:47 +0100 Subject: [PATCH] Ajoutez des fichiers projet. --- LivreLand.sln | 27 ++ LivreLand/App.xaml | 14 + LivreLand/App.xaml.cs | 11 + LivreLand/AppShell.xaml | 14 + LivreLand/AppShell.xaml.cs | 9 + LivreLand/LivreLand.csproj | 55 +++ LivreLand/MainPage.xaml | 41 ++ LivreLand/MainPage.xaml.cs | 24 ++ LivreLand/MauiProgram.cs | 24 ++ .../Platforms/Android/AndroidManifest.xml | 6 + LivreLand/Platforms/Android/MainActivity.cs | 10 + .../Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 9 + LivreLand/Platforms/MacCatalyst/Info.plist | 30 ++ LivreLand/Platforms/MacCatalyst/Program.cs | 15 + LivreLand/Platforms/Tizen/Main.cs | 16 + LivreLand/Platforms/Tizen/tizen-manifest.xml | 15 + LivreLand/Platforms/Windows/App.xaml | 8 + LivreLand/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ LivreLand/Platforms/Windows/app.manifest | 15 + LivreLand/Platforms/iOS/AppDelegate.cs | 9 + LivreLand/Platforms/iOS/Info.plist | 32 ++ LivreLand/Platforms/iOS/Program.cs | 15 + LivreLand/Properties/launchSettings.json | 8 + LivreLand/Resources/AppIcon/appicon.svg | 4 + LivreLand/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107140 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes LivreLand/Resources/Images/dotnet_bot.svg | 93 ++++ LivreLand/Resources/Raw/AboutAssets.txt | 15 + LivreLand/Resources/Splash/splash.svg | 8 + LivreLand/Resources/Styles/Colors.xaml | 44 ++ LivreLand/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 35 files changed, 1075 insertions(+) create mode 100644 LivreLand.sln create mode 100644 LivreLand/App.xaml create mode 100644 LivreLand/App.xaml.cs create mode 100644 LivreLand/AppShell.xaml create mode 100644 LivreLand/AppShell.xaml.cs create mode 100644 LivreLand/LivreLand.csproj create mode 100644 LivreLand/MainPage.xaml create mode 100644 LivreLand/MainPage.xaml.cs create mode 100644 LivreLand/MauiProgram.cs create mode 100644 LivreLand/Platforms/Android/AndroidManifest.xml create mode 100644 LivreLand/Platforms/Android/MainActivity.cs create mode 100644 LivreLand/Platforms/Android/MainApplication.cs create mode 100644 LivreLand/Platforms/Android/Resources/values/colors.xml create mode 100644 LivreLand/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 LivreLand/Platforms/MacCatalyst/Info.plist create mode 100644 LivreLand/Platforms/MacCatalyst/Program.cs create mode 100644 LivreLand/Platforms/Tizen/Main.cs create mode 100644 LivreLand/Platforms/Tizen/tizen-manifest.xml create mode 100644 LivreLand/Platforms/Windows/App.xaml create mode 100644 LivreLand/Platforms/Windows/App.xaml.cs create mode 100644 LivreLand/Platforms/Windows/Package.appxmanifest create mode 100644 LivreLand/Platforms/Windows/app.manifest create mode 100644 LivreLand/Platforms/iOS/AppDelegate.cs create mode 100644 LivreLand/Platforms/iOS/Info.plist create mode 100644 LivreLand/Platforms/iOS/Program.cs create mode 100644 LivreLand/Properties/launchSettings.json create mode 100644 LivreLand/Resources/AppIcon/appicon.svg create mode 100644 LivreLand/Resources/AppIcon/appiconfg.svg create mode 100644 LivreLand/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 LivreLand/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 LivreLand/Resources/Images/dotnet_bot.svg create mode 100644 LivreLand/Resources/Raw/AboutAssets.txt create mode 100644 LivreLand/Resources/Splash/splash.svg create mode 100644 LivreLand/Resources/Styles/Colors.xaml create mode 100644 LivreLand/Resources/Styles/Styles.xaml diff --git a/LivreLand.sln b/LivreLand.sln new file mode 100644 index 0000000..e8410e1 --- /dev/null +++ b/LivreLand.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31611.283 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LivreLand", "LivreLand\LivreLand.csproj", "{0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Release|Any CPU.Build.0 = Release|Any CPU + {0E95A11F-0D16-4CC3-82CD-E3BE44C28B2B}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + EndGlobalSection +EndGlobal diff --git a/LivreLand/App.xaml b/LivreLand/App.xaml new file mode 100644 index 0000000..67ba9dd --- /dev/null +++ b/LivreLand/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/LivreLand/App.xaml.cs b/LivreLand/App.xaml.cs new file mode 100644 index 0000000..b1e853c --- /dev/null +++ b/LivreLand/App.xaml.cs @@ -0,0 +1,11 @@ +namespace LivreLand; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/LivreLand/AppShell.xaml b/LivreLand/AppShell.xaml new file mode 100644 index 0000000..b72100d --- /dev/null +++ b/LivreLand/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/LivreLand/AppShell.xaml.cs b/LivreLand/AppShell.xaml.cs new file mode 100644 index 0000000..cae19f0 --- /dev/null +++ b/LivreLand/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace LivreLand; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/LivreLand/LivreLand.csproj b/LivreLand/LivreLand.csproj new file mode 100644 index 0000000..c4a7db5 --- /dev/null +++ b/LivreLand/LivreLand.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + LivreLand + true + true + enable + + + LivreLand + + + com.companyname.livreland + 37616142-0e75-42d0-a753-f14d8c41cbad + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/LivreLand/MainPage.xaml b/LivreLand/MainPage.xaml new file mode 100644 index 0000000..15e39db --- /dev/null +++ b/LivreLand/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +