diff --git a/ConsoleApp/Console.csproj b/ConsoleApp/ConsoleApp.csproj similarity index 73% rename from ConsoleApp/Console.csproj rename to ConsoleApp/ConsoleApp.csproj index fd022db..180e42c 100644 --- a/ConsoleApp/Console.csproj +++ b/ConsoleApp/ConsoleApp.csproj @@ -8,7 +8,7 @@ - + diff --git a/ConsoleApp/Program.cs b/ConsoleApp/Program.cs index e69de29..b436bdb 100644 --- a/ConsoleApp/Program.cs +++ b/ConsoleApp/Program.cs @@ -0,0 +1,7 @@ +using CoreLibrary; + + +JetonIndicateur ji1 = new JetonIndicateur(Couleur.Noir); +Console.WriteLine(ji1.Couleur); +Jeton j1 = new JetonIndicateur(Couleur.Blanc); +Console.WriteLine(j1.Couleur); \ No newline at end of file diff --git a/CoreLibrary/BibliothequeClasses.csproj b/CoreLibrary/CoreLibrary.csproj similarity index 95% rename from CoreLibrary/BibliothequeClasses.csproj rename to CoreLibrary/CoreLibrary.csproj index bb23fb7..fa71b7a 100644 --- a/CoreLibrary/BibliothequeClasses.csproj +++ b/CoreLibrary/CoreLibrary.csproj @@ -1,9 +1,9 @@ - - - - net8.0 - enable - enable - - - + + + + net8.0 + enable + enable + + + diff --git a/CoreLibrary/Jeton.cs b/CoreLibrary/Jeton.cs index 7286dfb..8830789 100644 --- a/CoreLibrary/Jeton.cs +++ b/CoreLibrary/Jeton.cs @@ -1,4 +1,4 @@ -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Class Jeton qui nous permet de recuperer la couleur du jeton et de pouvoir la changer diff --git a/CoreLibrary/JetonIndicateur.cs b/CoreLibrary/JetonIndicateur.cs index ac264d1..90d9604 100644 --- a/CoreLibrary/JetonIndicateur.cs +++ b/CoreLibrary/JetonIndicateur.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Class fille de la class Jeton diff --git a/CoreLibrary/JetonJoueur.cs b/CoreLibrary/JetonJoueur.cs index 37d617d..234e23b 100644 --- a/CoreLibrary/JetonJoueur.cs +++ b/CoreLibrary/JetonJoueur.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace BibliothequeClasses +namespace CoreLibrary { /// /// Class fille de la class Jeton diff --git a/CoreLibrary/Plateau.cs b/CoreLibrary/Plateau.cs index 6acadcc..908ff5f 100644 --- a/CoreLibrary/Plateau.cs +++ b/CoreLibrary/Plateau.cs @@ -1,13 +1,5 @@ -using System; -using System.ComponentModel.DataAnnotations; -using System.Reflection; -using System.Collections.Generic; - - - -namespace BibliothequeClasses +namespace CoreLibrary { - /// /// Class plateau qui initialise deux tableaux à 12. /// Il a deux methodes une pour ajouter une combinaison dans le tableaux et une autres pour verifier si le tableau est plein. @@ -17,7 +9,7 @@ namespace BibliothequeClasses private static readonly int tailleMax = 12; private CombinaisonSecrete combinaisonSecrete = new CombinaisonSecrete(); private CombinaisonJoueur[] lesCombinaisonsJoueur = new CombinaisonJoueur[tailleMax]; - private Combinaison[] lesCombinaisonsIndicateur = new CombinaisonIndicateur[tailleMax]; + private CombinaisonIndicateur[] lesCombinaisonsIndicateur = new CombinaisonIndicateur[tailleMax]; private int index = 0; public bool AjouterCombinaison(CombinaisonJoueur combinaisonJoueur) { diff --git a/CoreLibrary/couleurs.cs b/CoreLibrary/couleurs.cs index b95144e..52f2e30 100644 --- a/CoreLibrary/couleurs.cs +++ b/CoreLibrary/couleurs.cs @@ -1,15 +1,15 @@ -namespace BibliothequeClasses -{ +namespace CoreLibrary +{ /// /// Enumeration des 6 couleurs que peuvent prendre les jetons - /// - public enum Couleur - { - Rouge, - Bleu, - Vert, - Jaune, - Noir = 100, - Blanc, - } + /// + public enum Couleur + { + Rouge, + Bleu, + Vert, + Jaune, + Noir = 100, + Blanc, + } } \ No newline at end of file diff --git a/MauiApp/AppShell.xaml b/MauiApp/AppShell.xaml deleted file mode 100644 index 9402012..0000000 --- a/MauiApp/AppShell.xaml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/MauiApp/App.xaml b/MauiSpark/App.xaml similarity index 84% rename from MauiApp/App.xaml rename to MauiSpark/App.xaml index b850e1e..df42e0e 100644 --- a/MauiApp/App.xaml +++ b/MauiSpark/App.xaml @@ -1,8 +1,8 @@  + xmlns:local="clr-namespace:MauiSpark" + x:Class="MauiSpark.App"> diff --git a/MauiApp/App.xaml.cs b/MauiSpark/App.xaml.cs similarity index 82% rename from MauiApp/App.xaml.cs rename to MauiSpark/App.xaml.cs index ad9efe4..b85ad48 100644 --- a/MauiApp/App.xaml.cs +++ b/MauiSpark/App.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind +namespace MauiSpark { public partial class App : Application { diff --git a/MauiSpark/AppShell.xaml b/MauiSpark/AppShell.xaml new file mode 100644 index 0000000..1000770 --- /dev/null +++ b/MauiSpark/AppShell.xaml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/MauiApp/AppShell.xaml.cs b/MauiSpark/AppShell.xaml.cs similarity index 80% rename from MauiApp/AppShell.xaml.cs rename to MauiSpark/AppShell.xaml.cs index 0fcecd0..1d3abbc 100644 --- a/MauiApp/AppShell.xaml.cs +++ b/MauiSpark/AppShell.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind +namespace MauiSpark { public partial class AppShell : Shell { diff --git a/MauiApp/MauiProgram.cs b/MauiSpark/MauiProgram.cs similarity index 92% rename from MauiApp/MauiProgram.cs rename to MauiSpark/MauiProgram.cs index 180aedb..b538f00 100644 --- a/MauiApp/MauiProgram.cs +++ b/MauiSpark/MauiProgram.cs @@ -1,6 +1,6 @@ using Microsoft.Extensions.Logging; -namespace mastermind +namespace MauiSpark { public static class MauiProgram { diff --git a/MauiApp/mastermind.csproj b/MauiSpark/MauiSpark.csproj similarity index 81% rename from MauiApp/mastermind.csproj rename to MauiSpark/MauiSpark.csproj index f723780..4322eef 100644 --- a/MauiApp/mastermind.csproj +++ b/MauiSpark/MauiSpark.csproj @@ -1,115 +1,95 @@ - - - - net8.0-android;net8.0-ios;net8.0-maccatalyst - $(TargetFrameworks);net8.0-windows10.0.19041.0 - - - - - - - Exe - mastermind - true - true - enable - enable - - - mastermind - - - com.companyname.mastermind - - - 1.0 - 1 - - 11.0 - 13.1 - 21.0 - 10.0.17763.0 - 10.0.17763.0 - 6.5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - %(Filename) - - - TableauScore.xaml - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - MSBuild:Compile - - - - - - Connexion.xaml - - - ConnexionPage.xaml - - - - - - MSBuild:Compile - - - MSBuild:Compile - - - - - - MSBuild:Compile - - - - + + + + net8.0-android;net8.0-ios;net8.0-maccatalyst + $(TargetFrameworks);net8.0-windows10.0.19041.0 + + + + + + + Exe + MauiSpark + true + true + enable + enable + + + MauiSpark + + + fr.mastermind.mauispark + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + MSBuild:Compile + + + + diff --git a/MauiApp/Pages/Accueil.xaml b/MauiSpark/Pages/Accueil.xaml similarity index 93% rename from MauiApp/Pages/Accueil.xaml rename to MauiSpark/Pages/Accueil.xaml index feef823..0a60487 100644 --- a/MauiApp/Pages/Accueil.xaml +++ b/MauiSpark/Pages/Accueil.xaml @@ -1,6 +1,6 @@ diff --git a/MauiApp/Pages/Defaite.xaml.cs b/MauiSpark/Pages/Defaite.xaml.cs similarity index 71% rename from MauiApp/Pages/Defaite.xaml.cs rename to MauiSpark/Pages/Defaite.xaml.cs index 74f3619..23e6c55 100644 --- a/MauiApp/Pages/Defaite.xaml.cs +++ b/MauiSpark/Pages/Defaite.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Pages; +namespace MauiSpark.Pages; public partial class Defaite : ContentPage { diff --git a/MauiApp/Pages/Egaliter.xaml b/MauiSpark/Pages/Egaliter.xaml similarity index 88% rename from MauiApp/Pages/Egaliter.xaml rename to MauiSpark/Pages/Egaliter.xaml index 695837e..b10560e 100644 --- a/MauiApp/Pages/Egaliter.xaml +++ b/MauiSpark/Pages/Egaliter.xaml @@ -1,8 +1,8 @@ diff --git a/MauiApp/Pages/Egaliter.xaml.cs b/MauiSpark/Pages/Egaliter.xaml.cs similarity index 72% rename from MauiApp/Pages/Egaliter.xaml.cs rename to MauiSpark/Pages/Egaliter.xaml.cs index 6d984e3..2c6c648 100644 --- a/MauiApp/Pages/Egaliter.xaml.cs +++ b/MauiSpark/Pages/Egaliter.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Pages; +namespace MauiSpark.Pages; public partial class Egaliter : ContentPage { diff --git a/MauiApp/Pages/Regle.xaml b/MauiSpark/Pages/Regle.xaml similarity index 94% rename from MauiApp/Pages/Regle.xaml rename to MauiSpark/Pages/Regle.xaml index 8eb0589..b086dcb 100644 --- a/MauiApp/Pages/Regle.xaml +++ b/MauiSpark/Pages/Regle.xaml @@ -1,8 +1,8 @@ diff --git a/MauiApp/Pages/Regle.xaml.cs b/MauiSpark/Pages/Regle.xaml.cs similarity index 71% rename from MauiApp/Pages/Regle.xaml.cs rename to MauiSpark/Pages/Regle.xaml.cs index 0d22817..b8005a3 100644 --- a/MauiApp/Pages/Regle.xaml.cs +++ b/MauiSpark/Pages/Regle.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Pages; +namespace MauiSpark.Pages; public partial class Regle : ContentPage { diff --git a/MauiApp/Pages/TableauScore.xaml b/MauiSpark/Pages/TableauScore.xaml similarity index 90% rename from MauiApp/Pages/TableauScore.xaml rename to MauiSpark/Pages/TableauScore.xaml index d701db3..1c72c5b 100644 --- a/MauiApp/Pages/TableauScore.xaml +++ b/MauiSpark/Pages/TableauScore.xaml @@ -1,9 +1,9 @@ diff --git a/MauiApp/Pages/Victoire.xaml b/MauiSpark/Pages/Victoire.xaml similarity index 88% rename from MauiApp/Pages/Victoire.xaml rename to MauiSpark/Pages/Victoire.xaml index bb2f7c2..0ae8a6b 100644 --- a/MauiApp/Pages/Victoire.xaml +++ b/MauiSpark/Pages/Victoire.xaml @@ -1,8 +1,8 @@ diff --git a/MauiApp/Pages/Victoire.xaml.cs b/MauiSpark/Pages/Victoire.xaml.cs similarity index 72% rename from MauiApp/Pages/Victoire.xaml.cs rename to MauiSpark/Pages/Victoire.xaml.cs index 4037b45..85c8d0c 100644 --- a/MauiApp/Pages/Victoire.xaml.cs +++ b/MauiSpark/Pages/Victoire.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Pages; +namespace MauiSpark.Pages; public partial class Victoire : ContentPage { diff --git a/MauiApp/Pages/tableauScore.xaml.cs b/MauiSpark/Pages/tableauScore.xaml.cs similarity index 73% rename from MauiApp/Pages/tableauScore.xaml.cs rename to MauiSpark/Pages/tableauScore.xaml.cs index bb78148..3e2df4b 100644 --- a/MauiApp/Pages/tableauScore.xaml.cs +++ b/MauiSpark/Pages/tableauScore.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Pages; +namespace MauiSpark.Pages; public partial class TableauScore : ContentPage { diff --git a/MauiApp/Platforms/Android/AndroidManifest.xml b/MauiSpark/Platforms/Android/AndroidManifest.xml similarity index 100% rename from MauiApp/Platforms/Android/AndroidManifest.xml rename to MauiSpark/Platforms/Android/AndroidManifest.xml diff --git a/MauiApp/Platforms/Android/MainActivity.cs b/MauiSpark/Platforms/Android/MainActivity.cs similarity index 92% rename from MauiApp/Platforms/Android/MainActivity.cs rename to MauiSpark/Platforms/Android/MainActivity.cs index ae7604d..b75635f 100644 --- a/MauiApp/Platforms/Android/MainActivity.cs +++ b/MauiSpark/Platforms/Android/MainActivity.cs @@ -2,7 +2,7 @@ using Android.Content.PM; using Android.OS; -namespace mastermind +namespace MauiSpark { [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] public class MainActivity : MauiAppCompatActivity diff --git a/MauiApp/Platforms/Android/MainApplication.cs b/MauiSpark/Platforms/Android/MainApplication.cs similarity index 90% rename from MauiApp/Platforms/Android/MainApplication.cs rename to MauiSpark/Platforms/Android/MainApplication.cs index 7f13f15..5382fd4 100644 --- a/MauiApp/Platforms/Android/MainApplication.cs +++ b/MauiSpark/Platforms/Android/MainApplication.cs @@ -1,7 +1,7 @@ using Android.App; using Android.Runtime; -namespace mastermind +namespace MauiSpark { [Application] public class MainApplication : MauiApplication diff --git a/MauiApp/Platforms/Android/Resources/values/colors.xml b/MauiSpark/Platforms/Android/Resources/values/colors.xml similarity index 100% rename from MauiApp/Platforms/Android/Resources/values/colors.xml rename to MauiSpark/Platforms/Android/Resources/values/colors.xml diff --git a/MauiApp/Platforms/MacCatalyst/AppDelegate.cs b/MauiSpark/Platforms/MacCatalyst/AppDelegate.cs similarity index 87% rename from MauiApp/Platforms/MacCatalyst/AppDelegate.cs rename to MauiSpark/Platforms/MacCatalyst/AppDelegate.cs index ca554e7..5703ced 100644 --- a/MauiApp/Platforms/MacCatalyst/AppDelegate.cs +++ b/MauiSpark/Platforms/MacCatalyst/AppDelegate.cs @@ -1,6 +1,6 @@ using Foundation; -namespace mastermind +namespace MauiSpark { [Register("AppDelegate")] public class AppDelegate : MauiUIApplicationDelegate diff --git a/MauiApp/Platforms/MacCatalyst/Entitlements.plist b/MauiSpark/Platforms/MacCatalyst/Entitlements.plist similarity index 100% rename from MauiApp/Platforms/MacCatalyst/Entitlements.plist rename to MauiSpark/Platforms/MacCatalyst/Entitlements.plist diff --git a/MauiApp/Platforms/MacCatalyst/Info.plist b/MauiSpark/Platforms/MacCatalyst/Info.plist similarity index 100% rename from MauiApp/Platforms/MacCatalyst/Info.plist rename to MauiSpark/Platforms/MacCatalyst/Info.plist diff --git a/MauiApp/Platforms/iOS/Program.cs b/MauiSpark/Platforms/MacCatalyst/Program.cs similarity index 91% rename from MauiApp/Platforms/iOS/Program.cs rename to MauiSpark/Platforms/MacCatalyst/Program.cs index e641ff3..e3e2459 100644 --- a/MauiApp/Platforms/iOS/Program.cs +++ b/MauiSpark/Platforms/MacCatalyst/Program.cs @@ -1,7 +1,7 @@ using ObjCRuntime; using UIKit; -namespace mastermind +namespace MauiSpark { public class Program { diff --git a/MauiApp/Platforms/Tizen/Main.cs b/MauiSpark/Platforms/Tizen/Main.cs similarity index 89% rename from MauiApp/Platforms/Tizen/Main.cs rename to MauiSpark/Platforms/Tizen/Main.cs index 6c158cc..05aa988 100644 --- a/MauiApp/Platforms/Tizen/Main.cs +++ b/MauiSpark/Platforms/Tizen/Main.cs @@ -2,7 +2,7 @@ using Microsoft.Maui; using Microsoft.Maui.Hosting; using System; -namespace mastermind +namespace MauiSpark { internal class Program : MauiApplication { diff --git a/MauiApp/Platforms/Tizen/tizen-manifest.xml b/MauiSpark/Platforms/Tizen/tizen-manifest.xml similarity index 75% rename from MauiApp/Platforms/Tizen/tizen-manifest.xml rename to MauiSpark/Platforms/Tizen/tizen-manifest.xml index 068259e..0648f31 100644 --- a/MauiApp/Platforms/Tizen/tizen-manifest.xml +++ b/MauiSpark/Platforms/Tizen/tizen-manifest.xml @@ -1,7 +1,7 @@  - + - + maui-appicon-placeholder diff --git a/MauiApp/Platforms/Windows/App.xaml b/MauiSpark/Platforms/Windows/App.xaml similarity index 72% rename from MauiApp/Platforms/Windows/App.xaml rename to MauiSpark/Platforms/Windows/App.xaml index c5ae782..c2cde12 100644 --- a/MauiApp/Platforms/Windows/App.xaml +++ b/MauiSpark/Platforms/Windows/App.xaml @@ -1,8 +1,8 @@  + xmlns:local="using:MauiSpark.WinUI"> diff --git a/MauiApp/Platforms/Windows/App.xaml.cs b/MauiSpark/Platforms/Windows/App.xaml.cs similarity index 93% rename from MauiApp/Platforms/Windows/App.xaml.cs rename to MauiSpark/Platforms/Windows/App.xaml.cs index a286b97..1de1994 100644 --- a/MauiApp/Platforms/Windows/App.xaml.cs +++ b/MauiSpark/Platforms/Windows/App.xaml.cs @@ -3,7 +3,7 @@ // To learn more about WinUI, the WinUI project structure, // and more about our project templates, see: http://aka.ms/winui-project-info. -namespace mastermind.WinUI +namespace MauiSpark.WinUI { /// /// Provides application-specific behavior to supplement the default Application class. diff --git a/MauiApp/Platforms/Windows/Package.appxmanifest b/MauiSpark/Platforms/Windows/Package.appxmanifest similarity index 90% rename from MauiApp/Platforms/Windows/Package.appxmanifest rename to MauiSpark/Platforms/Windows/Package.appxmanifest index 7dad8b5..ee90fa6 100644 --- a/MauiApp/Platforms/Windows/Package.appxmanifest +++ b/MauiSpark/Platforms/Windows/Package.appxmanifest @@ -8,7 +8,7 @@ - + $placeholder$ diff --git a/MauiApp/Platforms/Windows/app.manifest b/MauiSpark/Platforms/Windows/app.manifest similarity index 88% rename from MauiApp/Platforms/Windows/app.manifest rename to MauiSpark/Platforms/Windows/app.manifest index ed465df..a1c5790 100644 --- a/MauiApp/Platforms/Windows/app.manifest +++ b/MauiSpark/Platforms/Windows/app.manifest @@ -1,6 +1,6 @@ - + diff --git a/MauiApp/Platforms/iOS/AppDelegate.cs b/MauiSpark/Platforms/iOS/AppDelegate.cs similarity index 87% rename from MauiApp/Platforms/iOS/AppDelegate.cs rename to MauiSpark/Platforms/iOS/AppDelegate.cs index ca554e7..5703ced 100644 --- a/MauiApp/Platforms/iOS/AppDelegate.cs +++ b/MauiSpark/Platforms/iOS/AppDelegate.cs @@ -1,6 +1,6 @@ using Foundation; -namespace mastermind +namespace MauiSpark { [Register("AppDelegate")] public class AppDelegate : MauiUIApplicationDelegate diff --git a/MauiApp/Platforms/iOS/Info.plist b/MauiSpark/Platforms/iOS/Info.plist similarity index 100% rename from MauiApp/Platforms/iOS/Info.plist rename to MauiSpark/Platforms/iOS/Info.plist diff --git a/MauiApp/Platforms/MacCatalyst/Program.cs b/MauiSpark/Platforms/iOS/Program.cs similarity index 91% rename from MauiApp/Platforms/MacCatalyst/Program.cs rename to MauiSpark/Platforms/iOS/Program.cs index e641ff3..e3e2459 100644 --- a/MauiApp/Platforms/MacCatalyst/Program.cs +++ b/MauiSpark/Platforms/iOS/Program.cs @@ -1,7 +1,7 @@ using ObjCRuntime; using UIKit; -namespace mastermind +namespace MauiSpark { public class Program { diff --git a/MauiApp/Properties/launchSettings.json b/MauiSpark/Properties/launchSettings.json similarity index 100% rename from MauiApp/Properties/launchSettings.json rename to MauiSpark/Properties/launchSettings.json diff --git a/MauiApp/Resources/AppIcon/appicon.svg b/MauiSpark/Resources/AppIcon/appicon.svg similarity index 100% rename from MauiApp/Resources/AppIcon/appicon.svg rename to MauiSpark/Resources/AppIcon/appicon.svg diff --git a/MauiApp/Resources/AppIcon/appiconfg.svg b/MauiSpark/Resources/AppIcon/appiconfg.svg similarity index 100% rename from MauiApp/Resources/AppIcon/appiconfg.svg rename to MauiSpark/Resources/AppIcon/appiconfg.svg diff --git a/MauiApp/Resources/Fonts/OpenSans-Regular.ttf b/MauiSpark/Resources/Fonts/OpenSans-Regular.ttf similarity index 97% rename from MauiApp/Resources/Fonts/OpenSans-Regular.ttf rename to MauiSpark/Resources/Fonts/OpenSans-Regular.ttf index 9ab655d..2d1edf0 100644 Binary files a/MauiApp/Resources/Fonts/OpenSans-Regular.ttf and b/MauiSpark/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/MauiApp/Resources/Fonts/OpenSans-Semibold.ttf b/MauiSpark/Resources/Fonts/OpenSans-Semibold.ttf similarity index 95% rename from MauiApp/Resources/Fonts/OpenSans-Semibold.ttf rename to MauiSpark/Resources/Fonts/OpenSans-Semibold.ttf index 2b7468e..fe13d06 100644 Binary files a/MauiApp/Resources/Fonts/OpenSans-Semibold.ttf and b/MauiSpark/Resources/Fonts/OpenSans-Semibold.ttf differ diff --git a/MauiApp/Resources/Images/connexion.png b/MauiSpark/Resources/Images/connexion.png similarity index 100% rename from MauiApp/Resources/Images/connexion.png rename to MauiSpark/Resources/Images/connexion.png diff --git a/MauiApp/Resources/Images/defaite.png b/MauiSpark/Resources/Images/defaite.png similarity index 100% rename from MauiApp/Resources/Images/defaite.png rename to MauiSpark/Resources/Images/defaite.png diff --git a/MauiSpark/Resources/Images/dotnet_bot.png b/MauiSpark/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000..f93ce02 Binary files /dev/null and b/MauiSpark/Resources/Images/dotnet_bot.png differ diff --git a/MauiApp/Resources/Images/egaliter.jpg b/MauiSpark/Resources/Images/egaliter.jpg similarity index 100% rename from MauiApp/Resources/Images/egaliter.jpg rename to MauiSpark/Resources/Images/egaliter.jpg diff --git a/MauiApp/Resources/Images/fleche_retour.png b/MauiSpark/Resources/Images/fleche_retour.png similarity index 100% rename from MauiApp/Resources/Images/fleche_retour.png rename to MauiSpark/Resources/Images/fleche_retour.png diff --git a/MauiApp/Resources/Images/livre.png b/MauiSpark/Resources/Images/livre.png similarity index 100% rename from MauiApp/Resources/Images/livre.png rename to MauiSpark/Resources/Images/livre.png diff --git a/MauiApp/Resources/Images/mastermind.png b/MauiSpark/Resources/Images/mastermind.png similarity index 100% rename from MauiApp/Resources/Images/mastermind.png rename to MauiSpark/Resources/Images/mastermind.png diff --git a/MauiApp/Resources/Images/pink_cloud.jpg b/MauiSpark/Resources/Images/pink_cloud.jpg similarity index 100% rename from MauiApp/Resources/Images/pink_cloud.jpg rename to MauiSpark/Resources/Images/pink_cloud.jpg diff --git a/MauiApp/Resources/Images/pointinterrogation.png b/MauiSpark/Resources/Images/pointinterrogation.png similarity index 100% rename from MauiApp/Resources/Images/pointinterrogation.png rename to MauiSpark/Resources/Images/pointinterrogation.png diff --git a/MauiApp/Resources/Images/star.png b/MauiSpark/Resources/Images/star.png similarity index 100% rename from MauiApp/Resources/Images/star.png rename to MauiSpark/Resources/Images/star.png diff --git a/MauiApp/Resources/Images/statistiques.png b/MauiSpark/Resources/Images/statistiques.png similarity index 100% rename from MauiApp/Resources/Images/statistiques.png rename to MauiSpark/Resources/Images/statistiques.png diff --git a/MauiApp/Resources/Images/trophy.jpg b/MauiSpark/Resources/Images/trophy.jpg similarity index 100% rename from MauiApp/Resources/Images/trophy.jpg rename to MauiSpark/Resources/Images/trophy.jpg diff --git a/MauiApp/Resources/Images/wood.jpg b/MauiSpark/Resources/Images/wood.jpg similarity index 100% rename from MauiApp/Resources/Images/wood.jpg rename to MauiSpark/Resources/Images/wood.jpg diff --git a/MauiApp/Resources/Raw/AboutAssets.txt b/MauiSpark/Resources/Raw/AboutAssets.txt similarity index 100% rename from MauiApp/Resources/Raw/AboutAssets.txt rename to MauiSpark/Resources/Raw/AboutAssets.txt diff --git a/MauiApp/Resources/Splash/splash.svg b/MauiSpark/Resources/Splash/splash.svg similarity index 100% rename from MauiApp/Resources/Splash/splash.svg rename to MauiSpark/Resources/Splash/splash.svg diff --git a/MauiApp/Resources/Styles/Colors.xaml b/MauiSpark/Resources/Styles/Colors.xaml similarity index 100% rename from MauiApp/Resources/Styles/Colors.xaml rename to MauiSpark/Resources/Styles/Colors.xaml diff --git a/MauiApp/Resources/Styles/Styles.xaml b/MauiSpark/Resources/Styles/Styles.xaml similarity index 100% rename from MauiApp/Resources/Styles/Styles.xaml rename to MauiSpark/Resources/Styles/Styles.xaml diff --git a/MauiApp/Views/CTableauScore.xaml b/MauiSpark/Views/CTableauScore.xaml similarity index 93% rename from MauiApp/Views/CTableauScore.xaml rename to MauiSpark/Views/CTableauScore.xaml index a7cc50b..5ef6dcd 100644 --- a/MauiApp/Views/CTableauScore.xaml +++ b/MauiSpark/Views/CTableauScore.xaml @@ -1,7 +1,7 @@ + x:Class="MauiSpark.Views.CTableauScore"> diff --git a/MauiApp/Views/CTableauScore.xaml.cs b/MauiSpark/Views/CTableauScore.xaml.cs similarity index 78% rename from MauiApp/Views/CTableauScore.xaml.cs rename to MauiSpark/Views/CTableauScore.xaml.cs index 64059f9..28a60c1 100644 --- a/MauiApp/Views/CTableauScore.xaml.cs +++ b/MauiSpark/Views/CTableauScore.xaml.cs @@ -1,4 +1,4 @@ -namespace mastermind.Views; +namespace MauiSpark.Views; public partial class CTableauScore : ContentView { diff --git a/MauiApp/Views/UsernameEntryView.xaml b/MauiSpark/Views/UsernameEntryView.xaml similarity index 87% rename from MauiApp/Views/UsernameEntryView.xaml rename to MauiSpark/Views/UsernameEntryView.xaml index b2e865d..50ebe00 100644 --- a/MauiApp/Views/UsernameEntryView.xaml +++ b/MauiSpark/Views/UsernameEntryView.xaml @@ -1,7 +1,7 @@ + x:Class="MauiSpark.Views.UsernameEntryView">