From 40430192a3463e6a72325ff3745b7ca82f62aefb Mon Sep 17 00:00:00 2001 From: Guillaume REY Date: Sat, 25 Mar 2023 09:43:28 +0100 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20d'une=20solution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore => Sources/.gitignore | 0 Sources/Ohara.sln | 27 ++ Sources/Ohara/App.xaml | 14 + Sources/Ohara/App.xaml.cs | 11 + Sources/Ohara/AppShell.xaml | 14 + Sources/Ohara/AppShell.xaml.cs | 9 + Sources/Ohara/MainPage.xaml | 41 ++ Sources/Ohara/MainPage.xaml.cs | 24 ++ Sources/Ohara/MauiProgram.cs | 24 ++ Sources/Ohara/Ohara.csproj | 55 +++ .../Platforms/Android/AndroidManifest.xml | 6 + .../Ohara/Platforms/Android/MainActivity.cs | 10 + .../Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 9 + .../Ohara/Platforms/MacCatalyst/Info.plist | 30 ++ .../Ohara/Platforms/MacCatalyst/Program.cs | 15 + Sources/Ohara/Platforms/Tizen/Main.cs | 16 + .../Ohara/Platforms/Tizen/tizen-manifest.xml | 15 + Sources/Ohara/Platforms/Windows/App.xaml | 8 + Sources/Ohara/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ Sources/Ohara/Platforms/Windows/app.manifest | 15 + Sources/Ohara/Platforms/iOS/AppDelegate.cs | 9 + Sources/Ohara/Platforms/iOS/Info.plist | 32 ++ Sources/Ohara/Platforms/iOS/Program.cs | 15 + Sources/Ohara/Properties/launchSettings.json | 8 + Sources/Ohara/Resources/AppIcon/appicon.svg | 4 + Sources/Ohara/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107140 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes Sources/Ohara/Resources/Images/dotnet_bot.svg | 93 ++++ Sources/Ohara/Resources/Raw/AboutAssets.txt | 15 + Sources/Ohara/Resources/Splash/splash.svg | 8 + Sources/Ohara/Resources/Styles/Colors.xaml | 44 ++ Sources/Ohara/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 36 files changed, 1075 insertions(+) rename .gitignore => Sources/.gitignore (100%) create mode 100644 Sources/Ohara.sln create mode 100644 Sources/Ohara/App.xaml create mode 100644 Sources/Ohara/App.xaml.cs create mode 100644 Sources/Ohara/AppShell.xaml create mode 100644 Sources/Ohara/AppShell.xaml.cs create mode 100644 Sources/Ohara/MainPage.xaml create mode 100644 Sources/Ohara/MainPage.xaml.cs create mode 100644 Sources/Ohara/MauiProgram.cs create mode 100644 Sources/Ohara/Ohara.csproj create mode 100644 Sources/Ohara/Platforms/Android/AndroidManifest.xml create mode 100644 Sources/Ohara/Platforms/Android/MainActivity.cs create mode 100644 Sources/Ohara/Platforms/Android/MainApplication.cs create mode 100644 Sources/Ohara/Platforms/Android/Resources/values/colors.xml create mode 100644 Sources/Ohara/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Sources/Ohara/Platforms/MacCatalyst/Info.plist create mode 100644 Sources/Ohara/Platforms/MacCatalyst/Program.cs create mode 100644 Sources/Ohara/Platforms/Tizen/Main.cs create mode 100644 Sources/Ohara/Platforms/Tizen/tizen-manifest.xml create mode 100644 Sources/Ohara/Platforms/Windows/App.xaml create mode 100644 Sources/Ohara/Platforms/Windows/App.xaml.cs create mode 100644 Sources/Ohara/Platforms/Windows/Package.appxmanifest create mode 100644 Sources/Ohara/Platforms/Windows/app.manifest create mode 100644 Sources/Ohara/Platforms/iOS/AppDelegate.cs create mode 100644 Sources/Ohara/Platforms/iOS/Info.plist create mode 100644 Sources/Ohara/Platforms/iOS/Program.cs create mode 100644 Sources/Ohara/Properties/launchSettings.json create mode 100644 Sources/Ohara/Resources/AppIcon/appicon.svg create mode 100644 Sources/Ohara/Resources/AppIcon/appiconfg.svg create mode 100644 Sources/Ohara/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Sources/Ohara/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Sources/Ohara/Resources/Images/dotnet_bot.svg create mode 100644 Sources/Ohara/Resources/Raw/AboutAssets.txt create mode 100644 Sources/Ohara/Resources/Splash/splash.svg create mode 100644 Sources/Ohara/Resources/Styles/Colors.xaml create mode 100644 Sources/Ohara/Resources/Styles/Styles.xaml diff --git a/.gitignore b/Sources/.gitignore similarity index 100% rename from .gitignore rename to Sources/.gitignore diff --git a/Sources/Ohara.sln b/Sources/Ohara.sln new file mode 100644 index 0000000..52e5311 --- /dev/null +++ b/Sources/Ohara.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}") = "Ohara", "Ohara\Ohara.csproj", "{EEC24A76-0EB3-4C67-A71B-7FF823713645}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.Release|Any CPU.Build.0 = Release|Any CPU + {EEC24A76-0EB3-4C67-A71B-7FF823713645}.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/Sources/Ohara/App.xaml b/Sources/Ohara/App.xaml new file mode 100644 index 0000000..63bcdce --- /dev/null +++ b/Sources/Ohara/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Sources/Ohara/App.xaml.cs b/Sources/Ohara/App.xaml.cs new file mode 100644 index 0000000..9ac759d --- /dev/null +++ b/Sources/Ohara/App.xaml.cs @@ -0,0 +1,11 @@ +namespace Ohara; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/Sources/Ohara/AppShell.xaml b/Sources/Ohara/AppShell.xaml new file mode 100644 index 0000000..68bb032 --- /dev/null +++ b/Sources/Ohara/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Sources/Ohara/AppShell.xaml.cs b/Sources/Ohara/AppShell.xaml.cs new file mode 100644 index 0000000..d8ecc87 --- /dev/null +++ b/Sources/Ohara/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace Ohara; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/Sources/Ohara/MainPage.xaml b/Sources/Ohara/MainPage.xaml new file mode 100644 index 0000000..245550e --- /dev/null +++ b/Sources/Ohara/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +