From b1e5964f5a535ec45ec58b7b9d76a722f454ccd3 Mon Sep 17 00:00:00 2001 From: Alexandre Agostinho Date: Fri, 31 Mar 2023 08:34:37 +0200 Subject: [PATCH 001/201] :tada: initialisation de la solution + projet Vue --- SAE-2.01.sln | 13 + Vue/App.xaml | 14 + Vue/App.xaml.cs | 12 + Vue/AppShell.xaml | 14 + Vue/AppShell.xaml.cs | 10 + Vue/MainPage.xaml | 41 ++ Vue/MainPage.xaml.cs | 24 ++ Vue/MauiProgram.cs | 25 ++ Vue/Platforms/Android/AndroidManifest.xml | 6 + Vue/Platforms/Android/MainActivity.cs | 11 + Vue/Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + Vue/Platforms/MacCatalyst/AppDelegate.cs | 10 + Vue/Platforms/MacCatalyst/Info.plist | 30 ++ Vue/Platforms/MacCatalyst/Program.cs | 16 + Vue/Platforms/Tizen/Main.cs | 17 + Vue/Platforms/Tizen/tizen-manifest.xml | 15 + Vue/Platforms/Windows/App.xaml | 8 + Vue/Platforms/Windows/App.xaml.cs | 24 ++ Vue/Platforms/Windows/Package.appxmanifest | 46 ++ Vue/Platforms/Windows/app.manifest | 15 + Vue/Platforms/iOS/AppDelegate.cs | 10 + Vue/Platforms/iOS/Info.plist | 32 ++ Vue/Platforms/iOS/Program.cs | 16 + Vue/Properties/launchSettings.json | 8 + Vue/Resources/AppIcon/appicon.svg | 4 + Vue/Resources/AppIcon/appiconfg.svg | 8 + Vue/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107140 bytes Vue/Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes Vue/Resources/Images/dotnet_bot.svg | 93 ++++ Vue/Resources/Raw/AboutAssets.txt | 15 + Vue/Resources/Splash/splash.svg | 8 + Vue/Resources/Styles/Colors.xaml | 44 ++ Vue/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ Vue/Vue.csproj | 55 +++ 35 files changed, 1071 insertions(+) create mode 100644 SAE-2.01.sln create mode 100644 Vue/App.xaml create mode 100644 Vue/App.xaml.cs create mode 100644 Vue/AppShell.xaml create mode 100644 Vue/AppShell.xaml.cs create mode 100644 Vue/MainPage.xaml create mode 100644 Vue/MainPage.xaml.cs create mode 100644 Vue/MauiProgram.cs create mode 100644 Vue/Platforms/Android/AndroidManifest.xml create mode 100644 Vue/Platforms/Android/MainActivity.cs create mode 100644 Vue/Platforms/Android/MainApplication.cs create mode 100644 Vue/Platforms/Android/Resources/values/colors.xml create mode 100644 Vue/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Vue/Platforms/MacCatalyst/Info.plist create mode 100644 Vue/Platforms/MacCatalyst/Program.cs create mode 100644 Vue/Platforms/Tizen/Main.cs create mode 100644 Vue/Platforms/Tizen/tizen-manifest.xml create mode 100644 Vue/Platforms/Windows/App.xaml create mode 100644 Vue/Platforms/Windows/App.xaml.cs create mode 100644 Vue/Platforms/Windows/Package.appxmanifest create mode 100644 Vue/Platforms/Windows/app.manifest create mode 100644 Vue/Platforms/iOS/AppDelegate.cs create mode 100644 Vue/Platforms/iOS/Info.plist create mode 100644 Vue/Platforms/iOS/Program.cs create mode 100644 Vue/Properties/launchSettings.json create mode 100644 Vue/Resources/AppIcon/appicon.svg create mode 100644 Vue/Resources/AppIcon/appiconfg.svg create mode 100644 Vue/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Vue/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Vue/Resources/Images/dotnet_bot.svg create mode 100644 Vue/Resources/Raw/AboutAssets.txt create mode 100644 Vue/Resources/Splash/splash.svg create mode 100644 Vue/Resources/Styles/Colors.xaml create mode 100644 Vue/Resources/Styles/Styles.xaml create mode 100644 Vue/Vue.csproj diff --git a/SAE-2.01.sln b/SAE-2.01.sln new file mode 100644 index 0000000..e6b2df1 --- /dev/null +++ b/SAE-2.01.sln @@ -0,0 +1,13 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33424.131 +MinimumVisualStudioVersion = 10.0.40219.1 +Global + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A0503117-9079-4BDE-A612-9E5B9F2EB358} + EndGlobalSection +EndGlobal diff --git a/Vue/App.xaml b/Vue/App.xaml new file mode 100644 index 0000000..0f639f3 --- /dev/null +++ b/Vue/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Vue/App.xaml.cs b/Vue/App.xaml.cs new file mode 100644 index 0000000..3368910 --- /dev/null +++ b/Vue/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Vue +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/Vue/AppShell.xaml b/Vue/AppShell.xaml new file mode 100644 index 0000000..439bfdc --- /dev/null +++ b/Vue/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Vue/AppShell.xaml.cs b/Vue/AppShell.xaml.cs new file mode 100644 index 0000000..9980f55 --- /dev/null +++ b/Vue/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Vue +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/Vue/MainPage.xaml b/Vue/MainPage.xaml new file mode 100644 index 0000000..af56e9c --- /dev/null +++ b/Vue/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +