diff --git a/.drone.yml b/.drone.yml
index 28b413b..04a7d3d 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -14,37 +14,37 @@ steps:
path: /docs
commands:
- cd MCTG/
- - dotnet restore CI-CD.sln
- - dotnet build CI-CD.sln -c Release --no-restore
- - dotnet publish CI-CD.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
+ - dotnet restore SAE-2.01.sln
+ - dotnet build SAE-2.01.sln -c Release --no-restore
+ - dotnet publish SAE-2.01.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
- name: tests
image: mcr.microsoft.com/dotnet/sdk:7.0
commands:
- cd MCTG/
- - dotnet restore CI-CD.sln
- - dotnet test CI-CD.sln --no-restore
+ - dotnet restore SAE-2.01.sln
+ - dotnet test SAE-2.01.sln --no-restore
depends_on: [build]
-# - name: code-analysis
-# image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
-# commands:
-# - cd MCTG/
-# - dotnet restore CI-CD.sln
-# - dotnet sonarscanner begin /k:gitrepotest /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
-# - dotnet build CI-CD.sln -c Release --no-restore
-# - dotnet test CI-CD.sln --logger trx --no-restore /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --collect "XPlat Code Coverage"
-# - reportgenerator -reports:"**/coverage.cobertura.xml" -reporttypes:SonarQube -targetdir:"coveragereport"
-# - dotnet publish CI-CD.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
-# - dotnet sonarscanner end /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
-# secrets: [ SECRET_SONAR_LOGIN ]
-# settings:
-# # accessible en ligne de commande par ${PLUGIN_SONAR_HOST}
-# sonar_host: https://codefirst.iut.uca.fr/sonar/
-# # accessible en ligne de commande par ${PLUGIN_SONAR_TOKEN}
-# sonar_token:
-# from_secret: SECRET_SONAR_LOGIN
-# depends_on: [ tests ]
+ - name: code-analysis
+ image: hub.codefirst.iut.uca.fr/marc.chevaldonne/codefirst-dronesonarplugin-dotnet7
+ commands:
+ - cd MCTG/
+ - dotnet restore SAE-2.01.sln
+ - dotnet sonarscanner begin /k:SAE-2.01 /d:sonar.host.url=$${PLUGIN_SONAR_HOST} /d:sonar.coverageReportPaths="coveragereport/SonarQube.xml" /d:sonar.coverage.exclusions="Tests/**" /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
+ - dotnet build SAE-2.01.sln -c Release --no-restore
+ - dotnet test SAE-2.01.sln --logger trx --no-restore /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --collect "XPlat Code Coverage"
+ - reportgenerator -reports:"**/coverage.cobertura.xml" -reporttypes:SonarQube -targetdir:"coveragereport"
+ - dotnet publish SAE-2.01.sln -c Release --no-restore -o CI_PROJECT_DIR/build/release
+ - dotnet sonarscanner end /d:sonar.login=$${PLUGIN_SONAR_TOKEN}
+ secrets: [ SECRET_SONAR_LOGIN ]
+ settings:
+ # accessible en ligne de commande par ${PLUGIN_SONAR_HOST}
+ sonar_host: https://codefirst.iut.uca.fr/sonar/
+ # accessible en ligne de commande par ${PLUGIN_SONAR_TOKEN}
+ sonar_token:
+ from_secret: SECRET_SONAR_LOGIN
+ depends_on: [ tests ]
- name: generate-and-deploy-docs
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-docdeployer
diff --git a/MCTG/CI-CD.sln b/MCTG/CI-CD.sln
deleted file mode 100644
index ab7e910..0000000
--- a/MCTG/CI-CD.sln
+++ /dev/null
@@ -1,42 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.5.33516.290
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGApp", "MCTGApp\MCTGApp.csproj", "{666C2211-8EBB-4FC8-9484-CB93BC854153}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGLib", "MCTGLib\MCTGLib.csproj", "{42FF86BD-92F9-4A32-A938-68515905378F}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGLib_UnitTests", "Tests\MCTGLib_UnitTests\MCTGLib_UnitTests.csproj", "{45AB746A-194B-4E43-81EB-83B06F35AA33}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{08B80CE8-A01D-4D86-8989-AF225D5DA48C}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {666C2211-8EBB-4FC8-9484-CB93BC854153}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {666C2211-8EBB-4FC8-9484-CB93BC854153}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {666C2211-8EBB-4FC8-9484-CB93BC854153}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {666C2211-8EBB-4FC8-9484-CB93BC854153}.Release|Any CPU.Build.0 = Release|Any CPU
- {42FF86BD-92F9-4A32-A938-68515905378F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {42FF86BD-92F9-4A32-A938-68515905378F}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {42FF86BD-92F9-4A32-A938-68515905378F}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {42FF86BD-92F9-4A32-A938-68515905378F}.Release|Any CPU.Build.0 = Release|Any CPU
- {45AB746A-194B-4E43-81EB-83B06F35AA33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {45AB746A-194B-4E43-81EB-83B06F35AA33}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {45AB746A-194B-4E43-81EB-83B06F35AA33}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {45AB746A-194B-4E43-81EB-83B06F35AA33}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {45AB746A-194B-4E43-81EB-83B06F35AA33} = {08B80CE8-A01D-4D86-8989-AF225D5DA48C}
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {ADEA5603-1EF6-4D43-9493-7D6D9DE7FA3F}
- EndGlobalSection
-EndGlobal
diff --git a/MCTG/SAE-2.01.sln b/MCTG/SAE-2.01.sln
index f1995a2..ab7e910 100644
--- a/MCTG/SAE-2.01.sln
+++ b/MCTG/SAE-2.01.sln
@@ -7,8 +7,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGApp", "MCTGApp\MCTGApp.
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGLib", "MCTGLib\MCTGLib.csproj", "{42FF86BD-92F9-4A32-A938-68515905378F}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Views", "Views\Views.csproj", "{508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}"
-EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MCTGLib_UnitTests", "Tests\MCTGLib_UnitTests\MCTGLib_UnitTests.csproj", "{45AB746A-194B-4E43-81EB-83B06F35AA33}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{08B80CE8-A01D-4D86-8989-AF225D5DA48C}"
@@ -27,12 +25,6 @@ Global
{42FF86BD-92F9-4A32-A938-68515905378F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{42FF86BD-92F9-4A32-A938-68515905378F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{42FF86BD-92F9-4A32-A938-68515905378F}.Release|Any CPU.Build.0 = Release|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Release|Any CPU.Build.0 = Release|Any CPU
- {508B5600-AFD0-4AE4-A3CF-5FA8BE3ECE75}.Release|Any CPU.Deploy.0 = Release|Any CPU
{45AB746A-194B-4E43-81EB-83B06F35AA33}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{45AB746A-194B-4E43-81EB-83B06F35AA33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{45AB746A-194B-4E43-81EB-83B06F35AA33}.Release|Any CPU.ActiveCfg = Release|Any CPU
diff --git a/MCTG/Views/App.xaml b/MCTG/Views/App.xaml
deleted file mode 100644
index beb7cff..0000000
--- a/MCTG/Views/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MCTG/Views/App.xaml.cs b/MCTG/Views/App.xaml.cs
deleted file mode 100644
index 40c0c3f..0000000
--- a/MCTG/Views/App.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace Views
-{
- public partial class App : Application
- {
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/AppShell.xaml b/MCTG/Views/AppShell.xaml
deleted file mode 100644
index 54e7dbe..0000000
--- a/MCTG/Views/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/MCTG/Views/AppShell.xaml.cs b/MCTG/Views/AppShell.xaml.cs
deleted file mode 100644
index 15833b6..0000000
--- a/MCTG/Views/AppShell.xaml.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace Views
-{
- public partial class AppShell : Shell
- {
- public AppShell()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/MainPage.xaml b/MCTG/Views/MainPage.xaml
deleted file mode 100644
index a1864aa..0000000
--- a/MCTG/Views/MainPage.xaml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MCTG/Views/MainPage.xaml.cs b/MCTG/Views/MainPage.xaml.cs
deleted file mode 100644
index b418188..0000000
--- a/MCTG/Views/MainPage.xaml.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace Views
-{
- public partial class MainPage : ContentPage
- {
- int count = 0;
-
- public MainPage()
- {
- InitializeComponent();
- }
-
- private void OnCounterClicked(object sender, EventArgs e)
- {
- count++;
-
- if (count == 1)
- CounterBtn.Text = $"Clicked {count} time";
- else
- CounterBtn.Text = $"Clicked {count} times";
-
- SemanticScreenReader.Announce(CounterBtn.Text);
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/MauiProgram.cs b/MCTG/Views/MauiProgram.cs
deleted file mode 100644
index 83fe77d..0000000
--- a/MCTG/Views/MauiProgram.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using Microsoft.Extensions.Logging;
-
-namespace Views
-{
- public static class MauiProgram
- {
- public static MauiApp CreateMauiApp()
- {
- var builder = MauiApp.CreateBuilder();
- builder
- .UseMauiApp()
- .ConfigureFonts(fonts =>
- {
- fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
- fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
- });
-
-#if DEBUG
- builder.Logging.AddDebug();
-#endif
-
- return builder.Build();
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Android/AndroidManifest.xml b/MCTG/Views/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/MCTG/Views/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Android/MainActivity.cs b/MCTG/Views/Platforms/Android/MainActivity.cs
deleted file mode 100644
index 1562aab..0000000
--- a/MCTG/Views/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace Views
-{
- [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
- public class MainActivity : MauiAppCompatActivity
- {
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Android/MainApplication.cs b/MCTG/Views/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 497efe1..0000000
--- a/MCTG/Views/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace Views
-{
- [Application]
- public class MainApplication : MauiApplication
- {
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Android/Resources/values/colors.xml b/MCTG/Views/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/MCTG/Views/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/MacCatalyst/AppDelegate.cs b/MCTG/Views/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 3fb8177..0000000
--- a/MCTG/Views/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace Views
-{
- [Register("AppDelegate")]
- public class AppDelegate : MauiUIApplicationDelegate
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/MacCatalyst/Info.plist b/MCTG/Views/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/MCTG/Views/Platforms/MacCatalyst/Info.plist
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
- UIDeviceFamily
-
- 1
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/MCTG/Views/Platforms/MacCatalyst/Program.cs b/MCTG/Views/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index fce8900..0000000
--- a/MCTG/Views/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Views
-{
- public class Program
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Tizen/Main.cs b/MCTG/Views/Platforms/Tizen/Main.cs
deleted file mode 100644
index f1bc34a..0000000
--- a/MCTG/Views/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-using System;
-
-namespace Views
-{
- internal class Program : MauiApplication
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Tizen/tizen-manifest.xml b/MCTG/Views/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 99da843..0000000
--- a/MCTG/Views/Platforms/Tizen/tizen-manifest.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
- maui-appicon-placeholder
-
-
-
-
- http://tizen.org/privilege/internet
-
-
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Windows/App.xaml b/MCTG/Views/Platforms/Windows/App.xaml
deleted file mode 100644
index 2477320..0000000
--- a/MCTG/Views/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/MCTG/Views/Platforms/Windows/App.xaml.cs b/MCTG/Views/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index 607f9c7..0000000
--- a/MCTG/Views/Platforms/Windows/App.xaml.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Microsoft.UI.Xaml;
-
-// To learn more about WinUI, the WinUI project structure,
-// and more about our project templates, see: http://aka.ms/winui-project-info.
-
-namespace Views.WinUI
-{
- ///
- /// Provides application-specific behavior to supplement the default Application class.
- ///
- public partial class App : MauiWinUIApplication
- {
- ///
- /// Initializes the singleton application object. This is the first line of authored code
- /// executed, and as such is the logical equivalent of main() or WinMain().
- ///
- public App()
- {
- this.InitializeComponent();
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/Windows/Package.appxmanifest b/MCTG/Views/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 25e9a44..0000000
--- a/MCTG/Views/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MCTG/Views/Platforms/Windows/app.manifest b/MCTG/Views/Platforms/Windows/app.manifest
deleted file mode 100644
index e431997..0000000
--- a/MCTG/Views/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/MCTG/Views/Platforms/iOS/AppDelegate.cs b/MCTG/Views/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 3fb8177..0000000
--- a/MCTG/Views/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Foundation;
-
-namespace Views
-{
- [Register("AppDelegate")]
- public class AppDelegate : MauiUIApplicationDelegate
- {
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Platforms/iOS/Info.plist b/MCTG/Views/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/MCTG/Views/Platforms/iOS/Info.plist
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- LSRequiresIPhoneOS
-
- UIDeviceFamily
-
- 1
- 2
-
- UIRequiredDeviceCapabilities
-
- arm64
-
- UISupportedInterfaceOrientations
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- UISupportedInterfaceOrientations~ipad
-
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
-
- XSAppIconAssets
- Assets.xcassets/appicon.appiconset
-
-
diff --git a/MCTG/Views/Platforms/iOS/Program.cs b/MCTG/Views/Platforms/iOS/Program.cs
deleted file mode 100644
index fce8900..0000000
--- a/MCTG/Views/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Views
-{
- public class Program
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- // if you want to use a different Application Delegate class from "AppDelegate"
- // you can specify it here.
- UIApplication.Main(args, null, typeof(AppDelegate));
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Properties/launchSettings.json b/MCTG/Views/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/MCTG/Views/Properties/launchSettings.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "profiles": {
- "Windows Machine": {
- "commandName": "MsixPackage",
- "nativeDebugging": false
- }
- }
-}
\ No newline at end of file
diff --git a/MCTG/Views/Resources/AppIcon/appicon.svg b/MCTG/Views/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/MCTG/Views/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Resources/AppIcon/appiconfg.svg b/MCTG/Views/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/MCTG/Views/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Resources/Fonts/OpenSans-Regular.ttf b/MCTG/Views/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index e248a95..0000000
Binary files a/MCTG/Views/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/MCTG/Views/Resources/Fonts/OpenSans-Semibold.ttf b/MCTG/Views/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index dbc9572..0000000
Binary files a/MCTG/Views/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/MCTG/Views/Resources/Images/dotnet_bot.svg b/MCTG/Views/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/MCTG/Views/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/MCTG/Views/Resources/Raw/AboutAssets.txt b/MCTG/Views/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/MCTG/Views/Resources/Raw/AboutAssets.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Any raw assets you want to be deployed with your application can be placed in
-this directory (and child directories). Deployment of the asset to your application
-is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
-
-
-
-These files will be deployed with you package and will be accessible using Essentials:
-
- async Task LoadMauiAsset()
- {
- using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
- using var reader = new StreamReader(stream);
-
- var contents = reader.ReadToEnd();
- }
diff --git a/MCTG/Views/Resources/Splash/splash.svg b/MCTG/Views/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/MCTG/Views/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Resources/Styles/Colors.xaml b/MCTG/Views/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/MCTG/Views/Resources/Styles/Colors.xaml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- #512BD4
- #DFD8F7
- #2B0B98
- White
- Black
- #E1E1E1
- #C8C8C8
- #ACACAC
- #919191
- #6E6E6E
- #404040
- #212121
- #141414
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #F7B548
- #FFD590
- #FFE5B9
- #28C2D1
- #7BDDEF
- #C3F2F4
- #3E8EED
- #72ACF1
- #A7CBF6
-
-
\ No newline at end of file
diff --git a/MCTG/Views/Resources/Styles/Styles.xaml b/MCTG/Views/Resources/Styles/Styles.xaml
deleted file mode 100644
index dc4a034..0000000
--- a/MCTG/Views/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,405 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MCTG/Views/Views.csproj b/MCTG/Views/Views.csproj
deleted file mode 100644
index d1061d8..0000000
--- a/MCTG/Views/Views.csproj
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
- net7.0-android;net7.0-ios;net7.0-maccatalyst
- $(TargetFrameworks);net7.0-windows10.0.19041.0
-
-
- Exe
- Views
- true
- true
- enable
-
-
- Views
-
-
- com.companyname.views
- 79cbc22d-7cee-47b2-af9f-b25e09cea0af
-
-
- 1.0
- 1
-
- 11.0
- 13.1
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/README.md b/README.md
index 17eb66f..b3889c6 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,11 @@
-[](https://codefirst.iut.uca.fr/alexandre.agostinho/SAE-2.01)
-
-# SAE 2.01 - Développement d'une application
+[](https://codefirst.iut.uca.fr/alexandre.agostinho/SAE-2.01)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+[](https://codefirst.iut.uca.fr/sonar/dashboard?id=gitrepotest)
+
+
+
+# SAE 2.01 - Développement d'une application