diff --git a/.gitignore b/.gitignore
index 2e1b318..e28a900 100644
--- a/.gitignore
+++ b/.gitignore
@@ -405,7 +405,8 @@ FodyWeavers.xsd
.LSOverride
# Icon must end with two \r
-Icon
+Icon
+
# Thumbnails
._*
diff --git a/src/Mui/Mui.sln b/src/Mui/Mui.sln
deleted file mode 100644
index 074a2c9..0000000
--- a/src/Mui/Mui.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "Mui", "Mui\Mui.csproj", "{0A3EB488-A2F3-46AF-A3D0-BE7737366196}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.Release|Any CPU.Build.0 = Release|Any CPU
- {0A3EB488-A2F3-46AF-A3D0-BE7737366196}.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/src/Mui/Mui/App.xaml b/src/Mui/Mui/App.xaml
deleted file mode 100644
index 7183eca..0000000
--- a/src/Mui/Mui/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Mui/Mui/App.xaml.cs b/src/Mui/Mui/App.xaml.cs
deleted file mode 100644
index 82a8b3c..0000000
--- a/src/Mui/Mui/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace Mui;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
diff --git a/src/Mui/Mui/AppShell.xaml b/src/Mui/Mui/AppShell.xaml
deleted file mode 100644
index 30c2080..0000000
--- a/src/Mui/Mui/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/src/Mui/Mui/AppShell.xaml.cs b/src/Mui/Mui/AppShell.xaml.cs
deleted file mode 100644
index 79fe502..0000000
--- a/src/Mui/Mui/AppShell.xaml.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace Mui;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
diff --git a/src/Mui/Mui/MainPage.xaml b/src/Mui/Mui/MainPage.xaml
deleted file mode 100644
index f98817a..0000000
--- a/src/Mui/Mui/MainPage.xaml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Mui/Mui/MainPage.xaml.cs b/src/Mui/Mui/MainPage.xaml.cs
deleted file mode 100644
index 841c396..0000000
--- a/src/Mui/Mui/MainPage.xaml.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace Mui;
-
-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);
- }
-}
-
diff --git a/src/Mui/Mui/MauiProgram.cs b/src/Mui/Mui/MauiProgram.cs
deleted file mode 100644
index 9ea286e..0000000
--- a/src/Mui/Mui/MauiProgram.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace Mui;
-
-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");
- });
-
- return builder.Build();
- }
-}
diff --git a/src/Mui/Mui/Mui.csproj b/src/Mui/Mui/Mui.csproj
deleted file mode 100644
index e68196f..0000000
--- a/src/Mui/Mui/Mui.csproj
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- Mui
- true
- true
- enable
-
-
- Mui
-
-
- com.companyname.mui
- 8144C4A2-5A1C-441E-9C07-645BBB13605A
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Mui/Mui/Platforms/Android/AndroidManifest.xml b/src/Mui/Mui/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/Mui/Mui/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Mui/Mui/Platforms/Android/MainActivity.cs b/src/Mui/Mui/Platforms/Android/MainActivity.cs
deleted file mode 100644
index 8ea45ad..0000000
--- a/src/Mui/Mui/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace Mui;
-
-[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/src/Mui/Mui/Platforms/Android/MainApplication.cs b/src/Mui/Mui/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 371b841..0000000
--- a/src/Mui/Mui/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace Mui;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Mui/Mui/Platforms/Android/Resources/values/colors.xml b/src/Mui/Mui/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/Mui/Mui/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/Mui/Mui/Platforms/MacCatalyst/AppDelegate.cs b/src/Mui/Mui/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 159b9f6..0000000
--- a/src/Mui/Mui/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace Mui;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Mui/Mui/Platforms/MacCatalyst/Info.plist b/src/Mui/Mui/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Platforms/MacCatalyst/Program.cs b/src/Mui/Mui/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 20079a5..0000000
--- a/src/Mui/Mui/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Mui;
-
-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));
- }
-}
diff --git a/src/Mui/Mui/Platforms/Tizen/Main.cs b/src/Mui/Mui/Platforms/Tizen/Main.cs
deleted file mode 100644
index 1f59423..0000000
--- a/src/Mui/Mui/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace Mui;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/Mui/Mui/Platforms/Tizen/tizen-manifest.xml b/src/Mui/Mui/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index d1a3805..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Platforms/Windows/App.xaml b/src/Mui/Mui/Platforms/Windows/App.xaml
deleted file mode 100644
index eaa7a08..0000000
--- a/src/Mui/Mui/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/Mui/Mui/Platforms/Windows/App.xaml.cs b/src/Mui/Mui/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index e98f6ab..0000000
--- a/src/Mui/Mui/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 Mui.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();
-}
-
diff --git a/src/Mui/Mui/Platforms/Windows/Package.appxmanifest b/src/Mui/Mui/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/Mui/Mui/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Mui/Mui/Platforms/Windows/app.manifest b/src/Mui/Mui/Platforms/Windows/app.manifest
deleted file mode 100644
index 0277869..0000000
--- a/src/Mui/Mui/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/Mui/Mui/Platforms/iOS/AppDelegate.cs b/src/Mui/Mui/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 159b9f6..0000000
--- a/src/Mui/Mui/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace Mui;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Mui/Mui/Platforms/iOS/Info.plist b/src/Mui/Mui/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Platforms/iOS/Program.cs b/src/Mui/Mui/Platforms/iOS/Program.cs
deleted file mode 100644
index 20079a5..0000000
--- a/src/Mui/Mui/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Mui;
-
-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));
- }
-}
diff --git a/src/Mui/Mui/Properties/launchSettings.json b/src/Mui/Mui/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Resources/AppIcon/appicon.svg b/src/Mui/Mui/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/Mui/Mui/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/Mui/Mui/Resources/AppIcon/appiconfg.svg b/src/Mui/Mui/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/Mui/Mui/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/Mui/Mui/Resources/Fonts/OpenSans-Regular.ttf b/src/Mui/Mui/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/Mui/Mui/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/Mui/Mui/Resources/Fonts/OpenSans-Semibold.ttf b/src/Mui/Mui/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/Mui/Mui/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/Mui/Mui/Resources/Images/dotnet_bot.svg b/src/Mui/Mui/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/Mui/Mui/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/Mui/Mui/Resources/Raw/AboutAssets.txt b/src/Mui/Mui/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Resources/Splash/splash.svg b/src/Mui/Mui/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/Mui/Mui/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/Mui/Mui/Resources/Styles/Colors.xaml b/src/Mui/Mui/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/Mui/Mui/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/src/Mui/Mui/Resources/Styles/Styles.xaml b/src/Mui/Mui/Resources/Styles/Styles.xaml
deleted file mode 100644
index 1ec9d55..0000000
--- a/src/Mui/Mui/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker.sln b/src/Tasker/Tasker.sln
deleted file mode 100644
index 5c18739..0000000
--- a/src/Tasker/Tasker.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "Tasker", "Tasker\Tasker.csproj", "{7F4A0BCD-D2BB-4288-B14D-822D071B67F7}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.Release|Any CPU.Build.0 = Release|Any CPU
- {7F4A0BCD-D2BB-4288-B14D-822D071B67F7}.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/src/Tasker/Tasker/App.xaml b/src/Tasker/Tasker/App.xaml
deleted file mode 100644
index aa783a0..0000000
--- a/src/Tasker/Tasker/App.xaml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker/App.xaml.cs b/src/Tasker/Tasker/App.xaml.cs
deleted file mode 100644
index 2c09f5c..0000000
--- a/src/Tasker/Tasker/App.xaml.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using Tasker.MVVM.View;
-
-namespace Tasker;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new MainView();
- }
-}
diff --git a/src/Tasker/Tasker/AppShell.xaml b/src/Tasker/Tasker/AppShell.xaml
deleted file mode 100644
index 75fecf9..0000000
--- a/src/Tasker/Tasker/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker/AppShell.xaml.cs b/src/Tasker/Tasker/AppShell.xaml.cs
deleted file mode 100644
index 6c3c2ab..0000000
--- a/src/Tasker/Tasker/AppShell.xaml.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace Tasker;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
diff --git a/src/Tasker/Tasker/Converters/ColorConverters.cs b/src/Tasker/Tasker/Converters/ColorConverters.cs
deleted file mode 100644
index 0b8d3c5..0000000
--- a/src/Tasker/Tasker/Converters/ColorConverters.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Globalization;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tasker.Converters
-{
- public class ColorConverters : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- var color = value.ToString();
- return Color.FromArgb(color);
- }
-
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
-}
diff --git a/src/Tasker/Tasker/FodyWeavers.xml b/src/Tasker/Tasker/FodyWeavers.xml
deleted file mode 100644
index d5abfed..0000000
--- a/src/Tasker/Tasker/FodyWeavers.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/MVVM/Model/Category.cs b/src/Tasker/Tasker/MVVM/Model/Category.cs
deleted file mode 100644
index 4addc1b..0000000
--- a/src/Tasker/Tasker/MVVM/Model/Category.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using PropertyChanged;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tasker.MVVM.Model
-{
- [AddINotifyPropertyChangedInterface]
- public class Category
- {
- public int Id { get; set; }
- public string CategoryName{ get; set; }
- public string Color { get; set; }
- public int PendingTask { get; set; }
- public float percentage { get; set; }
-
-
-
- }
-}
diff --git a/src/Tasker/Tasker/MVVM/Model/MyTask.cs b/src/Tasker/Tasker/MVVM/Model/MyTask.cs
deleted file mode 100644
index b1bf947..0000000
--- a/src/Tasker/Tasker/MVVM/Model/MyTask.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using PropertyChanged;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tasker.MVVM.Model
-{
- [AddINotifyPropertyChangedInterface]
-
- public class MyTask
- {
-
-
- public string TaskName { get; set; }
- public bool Completed { get; set; }
- public int CategoryId { get; set; }
- public string TaskColor { get; set; }
-
- }
-}
diff --git a/src/Tasker/Tasker/MVVM/View/MainView.xaml b/src/Tasker/Tasker/MVVM/View/MainView.xaml
deleted file mode 100644
index f682660..0000000
--- a/src/Tasker/Tasker/MVVM/View/MainView.xaml
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/MVVM/View/MainView.xaml.cs b/src/Tasker/Tasker/MVVM/View/MainView.xaml.cs
deleted file mode 100644
index 5c11733..0000000
--- a/src/Tasker/Tasker/MVVM/View/MainView.xaml.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using Tasker.MVVM.Model;
-using Tasker.MVVM.ViewModel;
-
-namespace Tasker.MVVM.View;
-
-public partial class MainView : ContentPage
-{
- private MainViewModel mainViewModel = new MainViewModel();
- public MainView()
- {
- InitializeComponent();
- BindingContext = new MainViewModel();
- }
-
- private void checkBox_CheckedChanged(object sender, CheckedChangedEventArgs e)
- {
- mainViewModel.UpdateData();
-
- }
-}
\ No newline at end of file
diff --git a/src/Tasker/Tasker/MVVM/ViewModel/MainViewModel.cs b/src/Tasker/Tasker/MVVM/ViewModel/MainViewModel.cs
deleted file mode 100644
index 2bc906b..0000000
--- a/src/Tasker/Tasker/MVVM/ViewModel/MainViewModel.cs
+++ /dev/null
@@ -1,157 +0,0 @@
-using Android.Webkit;
-using PropertyChanged;
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tasker.MVVM.Model;
-
-namespace Tasker.MVVM.ViewModel
-{
- [AddINotifyPropertyChangedInterface]
-
- public class MainViewModel
- {
- public ObservableCollection Categories { get; set; }
- public ObservableCollection Tasks { get; set; }
-
- public MainViewModel()
- {
- FillData();
-
- }
- public void FillData()
- {
-
- Categories = new ObservableCollection
- {
- new Category()
- {
- Id = 1,
- CategoryName = ".Net maui",
- Color = "#CF14DF"
- },
- new Category()
- {
- Id = 2,
- CategoryName = "tuto",
- Color = "#df6f14"
-
-
- },
- new Category()
- {
- Id = 3,
- CategoryName = "rouf",
- Color = "#14df80"
-
-
- },
- new Category()
- {
- Id = 4,
- CategoryName = "Net",
- Color = "#df6f14"
-
-
- },
- new Category()
- {
- Id = 5,
- CategoryName = "fif",
- Color = "#df6f14"
-
-
- }
-
-
-
- };
- Tasks = new ObservableCollection
- {
- new MyTask
- {
- TaskName = "Upload exercise files",
- Completed = false,
- CategoryId = 1
- },
- new MyTask
- {
- TaskName = "Plan next course",
- Completed = false,
- CategoryId = 1
- },
- new MyTask
- {
- TaskName = "Upload new ASP.NET video on YouTube",
- Completed = false,
- CategoryId = 2
- },
- new MyTask
- {
- TaskName = "Fix Settings.cs class of the project",
- Completed = false,
- CategoryId = 2
- },
- new MyTask
- {
- TaskName = "Update github repository",
- Completed = true,
- CategoryId = 2
- },
- new MyTask
- {
- TaskName = "Buy eggs",
- Completed = false,
- CategoryId = 3
- },
- new MyTask
- {
- TaskName = "Go for the pepperoni pizza",
- Completed = false,
- CategoryId = 3
- },
- };
- UpdateData();
-
-
- //FillData();
- }
- public void UpdateData()
- {
- foreach (var c in Categories)
- {
- var tasks = from t in Tasks
- where t.CategoryId == c.Id
- select t;
-
- var completed = from t in tasks
- where t.Completed == true
- select t;
-
- var notCompleted = from t in tasks
- where t.Completed == false
- select t;
-
-
-
- c.PendingTask = notCompleted.Count();
- c.percentage = (float)completed.Count() / (float)tasks.Count();
- }
- foreach (var t in Tasks)
- {
- var catColor =
- (from c in Categories
- where c.Id == t.CategoryId
- select c.Color).FirstOrDefault();
- t.TaskColor = catColor;
- }
- }
-
- }
-
-
-
-}
diff --git a/src/Tasker/Tasker/MainPage.xaml b/src/Tasker/Tasker/MainPage.xaml
deleted file mode 100644
index 984a87b..0000000
--- a/src/Tasker/Tasker/MainPage.xaml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker/MainPage.xaml.cs b/src/Tasker/Tasker/MainPage.xaml.cs
deleted file mode 100644
index 729d92e..0000000
--- a/src/Tasker/Tasker/MainPage.xaml.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace Tasker;
-
-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);
- }
-}
-
diff --git a/src/Tasker/Tasker/MauiProgram.cs b/src/Tasker/Tasker/MauiProgram.cs
deleted file mode 100644
index a09476f..0000000
--- a/src/Tasker/Tasker/MauiProgram.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace Tasker;
-
-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");
- fonts.AddFont("Roboto-Regular.ttf", "Robote");
-
- });
-
- return builder.Build();
- }
-}
diff --git a/src/Tasker/Tasker/Platforms/Android/AndroidManifest.xml b/src/Tasker/Tasker/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/Tasker/Tasker/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Platforms/Android/MainActivity.cs b/src/Tasker/Tasker/Platforms/Android/MainActivity.cs
deleted file mode 100644
index df5ff2b..0000000
--- a/src/Tasker/Tasker/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace Tasker;
-
-[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/src/Tasker/Tasker/Platforms/Android/MainApplication.cs b/src/Tasker/Tasker/Platforms/Android/MainApplication.cs
deleted file mode 100644
index e17454e..0000000
--- a/src/Tasker/Tasker/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace Tasker;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Tasker/Tasker/Platforms/Android/Resources/values/colors.xml b/src/Tasker/Tasker/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/Tasker/Tasker/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Platforms/MacCatalyst/AppDelegate.cs b/src/Tasker/Tasker/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 8f7a4ee..0000000
--- a/src/Tasker/Tasker/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace Tasker;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Tasker/Tasker/Platforms/MacCatalyst/Info.plist b/src/Tasker/Tasker/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Platforms/MacCatalyst/Program.cs b/src/Tasker/Tasker/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index b4d4eeb..0000000
--- a/src/Tasker/Tasker/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Tasker;
-
-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));
- }
-}
diff --git a/src/Tasker/Tasker/Platforms/Tizen/Main.cs b/src/Tasker/Tasker/Platforms/Tizen/Main.cs
deleted file mode 100644
index a51c869..0000000
--- a/src/Tasker/Tasker/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace Tasker;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/Tasker/Tasker/Platforms/Tizen/tizen-manifest.xml b/src/Tasker/Tasker/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index b75ea5e..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Platforms/Windows/App.xaml b/src/Tasker/Tasker/Platforms/Windows/App.xaml
deleted file mode 100644
index cb4b2a7..0000000
--- a/src/Tasker/Tasker/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/Tasker/Tasker/Platforms/Windows/App.xaml.cs b/src/Tasker/Tasker/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index f02e647..0000000
--- a/src/Tasker/Tasker/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 Tasker.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();
-}
-
diff --git a/src/Tasker/Tasker/Platforms/Windows/Package.appxmanifest b/src/Tasker/Tasker/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/Tasker/Tasker/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker/Platforms/Windows/app.manifest b/src/Tasker/Tasker/Platforms/Windows/app.manifest
deleted file mode 100644
index 7b5de81..0000000
--- a/src/Tasker/Tasker/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/Tasker/Tasker/Platforms/iOS/AppDelegate.cs b/src/Tasker/Tasker/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 8f7a4ee..0000000
--- a/src/Tasker/Tasker/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace Tasker;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/Tasker/Tasker/Platforms/iOS/Info.plist b/src/Tasker/Tasker/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Platforms/iOS/Program.cs b/src/Tasker/Tasker/Platforms/iOS/Program.cs
deleted file mode 100644
index b4d4eeb..0000000
--- a/src/Tasker/Tasker/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace Tasker;
-
-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));
- }
-}
diff --git a/src/Tasker/Tasker/Properties/launchSettings.json b/src/Tasker/Tasker/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Resources/AppIcon/appicon.svg b/src/Tasker/Tasker/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/Tasker/Tasker/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Resources/AppIcon/appiconfg.svg b/src/Tasker/Tasker/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/Tasker/Tasker/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Resources/Fonts/OpenSans-Regular.ttf b/src/Tasker/Tasker/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/Tasker/Tasker/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/Tasker/Tasker/Resources/Fonts/OpenSans-Semibold.ttf b/src/Tasker/Tasker/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/Tasker/Tasker/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/Tasker/Tasker/Resources/Fonts/Roboto-Regular.ttf b/src/Tasker/Tasker/Resources/Fonts/Roboto-Regular.ttf
deleted file mode 100644
index ddf4bfa..0000000
Binary files a/src/Tasker/Tasker/Resources/Fonts/Roboto-Regular.ttf and /dev/null differ
diff --git a/src/Tasker/Tasker/Resources/Images/dotnet_bot.svg b/src/Tasker/Tasker/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/Tasker/Tasker/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/Tasker/Tasker/Resources/Raw/AboutAssets.txt b/src/Tasker/Tasker/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Resources/Splash/splash.svg b/src/Tasker/Tasker/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/Tasker/Tasker/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Resources/Styles/AppStyle.xaml b/src/Tasker/Tasker/Resources/Styles/AppStyle.xaml
deleted file mode 100644
index ae5882e..0000000
--- a/src/Tasker/Tasker/Resources/Styles/AppStyle.xaml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
- #212B4F
- #8A8BA6
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/Tasker/Tasker/Resources/Styles/Colors.xaml b/src/Tasker/Tasker/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/Tasker/Tasker/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/src/Tasker/Tasker/Resources/Styles/Styles.xaml b/src/Tasker/Tasker/Resources/Styles/Styles.xaml
deleted file mode 100644
index 0060b4d..0000000
--- a/src/Tasker/Tasker/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/Tasker/Tasker/Tasker.csproj b/src/Tasker/Tasker/Tasker.csproj
deleted file mode 100644
index e369477..0000000
--- a/src/Tasker/Tasker/Tasker.csproj
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- Tasker
- true
- true
- enable
-
-
- Tasker
-
-
- com.companyname.tasker
- DABFE0BC-D012-4EF3-8D92-DE54DBCF47D6
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
- d23103e1-5ca7-41d1-a3b2-f0ca6f114350
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MSBuild:Compile
-
-
- MSBuild:Compile
-
-
-
-
diff --git a/src/bbbbb/bbbbb.sln b/src/bbbbb/bbbbb.sln
deleted file mode 100644
index 97944e9..0000000
--- a/src/bbbbb/bbbbb.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "bbbbb", "bbbbb\bbbbb.csproj", "{CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.Release|Any CPU.Build.0 = Release|Any CPU
- {CE46485B-2206-4DC9-A5E8-C5C4BBD216EB}.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/src/bbbbb/bbbbb/App.xaml b/src/bbbbb/bbbbb/App.xaml
deleted file mode 100644
index 68b8595..0000000
--- a/src/bbbbb/bbbbb/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/bbbbb/bbbbb/App.xaml.cs b/src/bbbbb/bbbbb/App.xaml.cs
deleted file mode 100644
index f9dc445..0000000
--- a/src/bbbbb/bbbbb/App.xaml.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using bbbbb.Model;
-using bbbbb.View;
-
-namespace bbbbb;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
diff --git a/src/bbbbb/bbbbb/AppShell.xaml b/src/bbbbb/bbbbb/AppShell.xaml
deleted file mode 100644
index 1dd8b2a..0000000
--- a/src/bbbbb/bbbbb/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/src/bbbbb/bbbbb/AppShell.xaml.cs b/src/bbbbb/bbbbb/AppShell.xaml.cs
deleted file mode 100644
index 9f69864..0000000
--- a/src/bbbbb/bbbbb/AppShell.xaml.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace bbbbb;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
diff --git a/src/bbbbb/bbbbb/MainPage.xaml b/src/bbbbb/bbbbb/MainPage.xaml
deleted file mode 100644
index 4c0d098..0000000
--- a/src/bbbbb/bbbbb/MainPage.xaml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/bbbbb/bbbbb/MainPage.xaml.cs b/src/bbbbb/bbbbb/MainPage.xaml.cs
deleted file mode 100644
index ec0ee73..0000000
--- a/src/bbbbb/bbbbb/MainPage.xaml.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace bbbbb;
-
-public partial class MainPage : ContentPage
-{
-
-
- public MainPage()
- {
- InitializeComponent();
- }
-
-
-}
-
diff --git a/src/bbbbb/bbbbb/MauiProgram.cs b/src/bbbbb/bbbbb/MauiProgram.cs
deleted file mode 100644
index bfb67a9..0000000
--- a/src/bbbbb/bbbbb/MauiProgram.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using bbbbb.Model;
-using bbbbb.ViewModel;
-
-namespace bbbbb;
-
-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");
- });
- builder.Services.AddSingleton();
- builder.Services.AddSingleton();
-
- return builder.Build();
- }
-}
diff --git a/src/bbbbb/bbbbb/Model/ExempleModel.cs b/src/bbbbb/bbbbb/Model/ExempleModel.cs
deleted file mode 100644
index 0e68e46..0000000
--- a/src/bbbbb/bbbbb/Model/ExempleModel.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using bbbbb.View;
-using CommunityToolkit.Mvvm.ComponentModel;
-using CommunityToolkit.Mvvm.Input;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace bbbbb.Model
-{
- public partial class ExempleModel: ObservableObject
- {
- [ObservableProperty]
- private string nom;
-
-
-
- }
-}
diff --git a/src/bbbbb/bbbbb/Platforms/Android/AndroidManifest.xml b/src/bbbbb/bbbbb/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/bbbbb/bbbbb/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/Platforms/Android/MainActivity.cs b/src/bbbbb/bbbbb/Platforms/Android/MainActivity.cs
deleted file mode 100644
index a17aba8..0000000
--- a/src/bbbbb/bbbbb/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace bbbbb;
-
-[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/src/bbbbb/bbbbb/Platforms/Android/MainApplication.cs b/src/bbbbb/bbbbb/Platforms/Android/MainApplication.cs
deleted file mode 100644
index ff8e29d..0000000
--- a/src/bbbbb/bbbbb/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace bbbbb;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/bbbbb/bbbbb/Platforms/Android/Resources/values/colors.xml b/src/bbbbb/bbbbb/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/bbbbb/bbbbb/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/Platforms/MacCatalyst/AppDelegate.cs b/src/bbbbb/bbbbb/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index d9546ba..0000000
--- a/src/bbbbb/bbbbb/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace bbbbb;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/bbbbb/bbbbb/Platforms/MacCatalyst/Info.plist b/src/bbbbb/bbbbb/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Platforms/MacCatalyst/Program.cs b/src/bbbbb/bbbbb/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 909a97a..0000000
--- a/src/bbbbb/bbbbb/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace bbbbb;
-
-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));
- }
-}
diff --git a/src/bbbbb/bbbbb/Platforms/Tizen/Main.cs b/src/bbbbb/bbbbb/Platforms/Tizen/Main.cs
deleted file mode 100644
index edc18f5..0000000
--- a/src/bbbbb/bbbbb/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace bbbbb;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/bbbbb/bbbbb/Platforms/Tizen/tizen-manifest.xml b/src/bbbbb/bbbbb/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 9038b50..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Platforms/Windows/App.xaml b/src/bbbbb/bbbbb/Platforms/Windows/App.xaml
deleted file mode 100644
index a5ca69c..0000000
--- a/src/bbbbb/bbbbb/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/bbbbb/bbbbb/Platforms/Windows/App.xaml.cs b/src/bbbbb/bbbbb/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index 723b95f..0000000
--- a/src/bbbbb/bbbbb/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 bbbbb.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();
-}
-
diff --git a/src/bbbbb/bbbbb/Platforms/Windows/Package.appxmanifest b/src/bbbbb/bbbbb/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/bbbbb/bbbbb/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/bbbbb/bbbbb/Platforms/Windows/app.manifest b/src/bbbbb/bbbbb/Platforms/Windows/app.manifest
deleted file mode 100644
index d141e78..0000000
--- a/src/bbbbb/bbbbb/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/bbbbb/bbbbb/Platforms/iOS/AppDelegate.cs b/src/bbbbb/bbbbb/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index d9546ba..0000000
--- a/src/bbbbb/bbbbb/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace bbbbb;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/bbbbb/bbbbb/Platforms/iOS/Info.plist b/src/bbbbb/bbbbb/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Platforms/iOS/Program.cs b/src/bbbbb/bbbbb/Platforms/iOS/Program.cs
deleted file mode 100644
index 909a97a..0000000
--- a/src/bbbbb/bbbbb/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace bbbbb;
-
-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));
- }
-}
diff --git a/src/bbbbb/bbbbb/Properties/launchSettings.json b/src/bbbbb/bbbbb/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Resources/AppIcon/appicon.svg b/src/bbbbb/bbbbb/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/bbbbb/bbbbb/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/Resources/AppIcon/appiconfg.svg b/src/bbbbb/bbbbb/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/bbbbb/bbbbb/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Regular.ttf b/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Semibold.ttf b/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/bbbbb/bbbbb/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/bbbbb/bbbbb/Resources/Images/dotnet_bot.svg b/src/bbbbb/bbbbb/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/bbbbb/bbbbb/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/bbbbb/bbbbb/Resources/Raw/AboutAssets.txt b/src/bbbbb/bbbbb/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Resources/Splash/splash.svg b/src/bbbbb/bbbbb/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/bbbbb/bbbbb/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/Resources/Styles/Colors.xaml b/src/bbbbb/bbbbb/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/bbbbb/bbbbb/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/src/bbbbb/bbbbb/Resources/Styles/Styles.xaml b/src/bbbbb/bbbbb/Resources/Styles/Styles.xaml
deleted file mode 100644
index 1ec9d55..0000000
--- a/src/bbbbb/bbbbb/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/bbbbb/bbbbb/View/Exemple.xaml b/src/bbbbb/bbbbb/View/Exemple.xaml
deleted file mode 100644
index 8035289..0000000
--- a/src/bbbbb/bbbbb/View/Exemple.xaml
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/View/Exemple.xaml.cs b/src/bbbbb/bbbbb/View/Exemple.xaml.cs
deleted file mode 100644
index d6b8989..0000000
--- a/src/bbbbb/bbbbb/View/Exemple.xaml.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using bbbbb.Model;
-using bbbbb.ViewModel;
-
-namespace bbbbb.View;
-
-public partial class Exemple : ContentPage
-{
- public Exemple()
- {
- InitializeComponent();
- BindingContext = new ExempleViewModel();
- }
-}
\ No newline at end of file
diff --git a/src/bbbbb/bbbbb/ViewModel/ExempleViewModel.cs b/src/bbbbb/bbbbb/ViewModel/ExempleViewModel.cs
deleted file mode 100644
index 9e688c1..0000000
--- a/src/bbbbb/bbbbb/ViewModel/ExempleViewModel.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using bbbbb.Model;
-using CommunityToolkit.Mvvm.ComponentModel;
-using CommunityToolkit.Mvvm.Input;
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace bbbbb.ViewModel
-{
- public partial class ExempleViewModel :ObservableObject
- {
- public ExempleModel exemple { get; set; }
- public ExempleViewModel()
- {
- exemple=new ExempleModel();
- Items = new ObservableCollection();
-
- }
- [ObservableProperty]
- public ObservableCollection items;
-
- [RelayCommand]
- public void Add()
- {
- if (string.IsNullOrEmpty(exemple.Nom))
- return;
- Items.Add(exemple);
- exemple.Nom = string.Empty;
- }
- }
-}
diff --git a/src/bbbbb/bbbbb/bbbbb.csproj b/src/bbbbb/bbbbb/bbbbb.csproj
deleted file mode 100644
index 97cac44..0000000
--- a/src/bbbbb/bbbbb/bbbbb.csproj
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- bbbbb
- true
- true
- enable
-
-
- bbbbb
-
-
- com.companyname.bbbbb
- AC417D06-F341-4A3E-9BBE-2402D2517F8E
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MSBuild:Compile
-
-
-
-
diff --git a/src/db/db.sln b/src/db/db.sln
deleted file mode 100644
index a4afd53..0000000
--- a/src/db/db.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "db", "db\db.csproj", "{58A98432-A263-4B17-9E08-FFB6F518E3EB}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.Release|Any CPU.Build.0 = Release|Any CPU
- {58A98432-A263-4B17-9E08-FFB6F518E3EB}.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/src/db/db/App.xaml b/src/db/db/App.xaml
deleted file mode 100644
index e594142..0000000
--- a/src/db/db/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/db/db/App.xaml.cs b/src/db/db/App.xaml.cs
deleted file mode 100644
index fc7f51d..0000000
--- a/src/db/db/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace db;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
diff --git a/src/db/db/AppShell.xaml b/src/db/db/AppShell.xaml
deleted file mode 100644
index a334df7..0000000
--- a/src/db/db/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-;
-
-
-
-
-
diff --git a/src/db/db/AppShell.xaml.cs b/src/db/db/AppShell.xaml.cs
deleted file mode 100644
index ac7901e..0000000
--- a/src/db/db/AppShell.xaml.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace db;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
diff --git a/src/db/db/MainPage.xaml b/src/db/db/MainPage.xaml
deleted file mode 100644
index 8b12e7f..0000000
--- a/src/db/db/MainPage.xaml
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/db/db/MainPage.xaml.cs b/src/db/db/MainPage.xaml.cs
deleted file mode 100644
index 90ca962..0000000
--- a/src/db/db/MainPage.xaml.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using db.ViewModel;
-
-namespace db;
-
-public partial class MainPage : ContentPage
-{
-
- public MainPage(MainPageViewModel vm)
- {
- InitializeComponent();
- BindingContext = vm;
- }
-
-
-}
-
diff --git a/src/db/db/MauiProgram.cs b/src/db/db/MauiProgram.cs
deleted file mode 100644
index 89a9f82..0000000
--- a/src/db/db/MauiProgram.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using db.ViewModel;
-
-namespace db;
-
-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");
- });
- builder.Services.AddSingleton();
- builder.Services.AddSingleton();
-
-
-
- return builder.Build();
- }
-}
diff --git a/src/db/db/Model/Tache.cs b/src/db/db/Model/Tache.cs
deleted file mode 100644
index f8da6d1..0000000
--- a/src/db/db/Model/Tache.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using CommunityToolkit.Mvvm.ComponentModel;
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace db.Model
-{
- public partial class Tache :ObservableObject
- {
- [ObservableProperty]
- private string text;
- }
-}
diff --git a/src/db/db/Platforms/Android/AndroidManifest.xml b/src/db/db/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/db/db/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/db/db/Platforms/Android/MainActivity.cs b/src/db/db/Platforms/Android/MainActivity.cs
deleted file mode 100644
index 24efea9..0000000
--- a/src/db/db/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace db;
-
-[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/src/db/db/Platforms/Android/MainApplication.cs b/src/db/db/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 9d4e634..0000000
--- a/src/db/db/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace db;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/db/db/Platforms/Android/Resources/values/colors.xml b/src/db/db/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/db/db/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/db/db/Platforms/MacCatalyst/AppDelegate.cs b/src/db/db/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 3c23151..0000000
--- a/src/db/db/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace db;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/db/db/Platforms/MacCatalyst/Info.plist b/src/db/db/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/db/db/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/src/db/db/Platforms/MacCatalyst/Program.cs b/src/db/db/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 474a885..0000000
--- a/src/db/db/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace db;
-
-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));
- }
-}
diff --git a/src/db/db/Platforms/Tizen/Main.cs b/src/db/db/Platforms/Tizen/Main.cs
deleted file mode 100644
index b9653f5..0000000
--- a/src/db/db/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace db;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/db/db/Platforms/Tizen/tizen-manifest.xml b/src/db/db/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 6e6ac7a..0000000
--- a/src/db/db/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/src/db/db/Platforms/Windows/App.xaml b/src/db/db/Platforms/Windows/App.xaml
deleted file mode 100644
index 7ab2a49..0000000
--- a/src/db/db/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/db/db/Platforms/Windows/App.xaml.cs b/src/db/db/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index f575163..0000000
--- a/src/db/db/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 db.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();
-}
-
diff --git a/src/db/db/Platforms/Windows/Package.appxmanifest b/src/db/db/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/db/db/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/db/db/Platforms/Windows/app.manifest b/src/db/db/Platforms/Windows/app.manifest
deleted file mode 100644
index 456540b..0000000
--- a/src/db/db/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/db/db/Platforms/iOS/AppDelegate.cs b/src/db/db/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 3c23151..0000000
--- a/src/db/db/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace db;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/db/db/Platforms/iOS/Info.plist b/src/db/db/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/db/db/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/src/db/db/Platforms/iOS/Program.cs b/src/db/db/Platforms/iOS/Program.cs
deleted file mode 100644
index 474a885..0000000
--- a/src/db/db/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace db;
-
-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));
- }
-}
diff --git a/src/db/db/Properties/launchSettings.json b/src/db/db/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/db/db/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/src/db/db/Resources/AppIcon/appicon.svg b/src/db/db/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/db/db/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/db/db/Resources/AppIcon/appiconfg.svg b/src/db/db/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/db/db/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/db/db/Resources/Fonts/OpenSans-Regular.ttf b/src/db/db/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/db/db/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/db/db/Resources/Fonts/OpenSans-Semibold.ttf b/src/db/db/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/db/db/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/db/db/Resources/Images/dotnet_bot.svg b/src/db/db/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/db/db/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/db/db/Resources/Raw/AboutAssets.txt b/src/db/db/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/db/db/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/src/db/db/Resources/Splash/splash.svg b/src/db/db/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/db/db/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/db/db/Resources/Styles/Colors.xaml b/src/db/db/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/db/db/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/src/db/db/Resources/Styles/Styles.xaml b/src/db/db/Resources/Styles/Styles.xaml
deleted file mode 100644
index 1ec9d55..0000000
--- a/src/db/db/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/db/db/ViewModel/MainPageViewModel.cs b/src/db/db/ViewModel/MainPageViewModel.cs
deleted file mode 100644
index e47224b..0000000
--- a/src/db/db/ViewModel/MainPageViewModel.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using CommunityToolkit.Mvvm.ComponentModel;
-using CommunityToolkit.Mvvm.Input;
-using System.Collections.ObjectModel;
-
-namespace db.ViewModel
-{
- public partial class MainPageViewModel : ObservableObject
- {
- public MainPageViewModel()
- {
-
-
- }
- [ObservableProperty]
- ObservableCollection items;
- [ObservableProperty]
- string text;
- [RelayCommand]
- void Add()
- {
-
- }
-
-
- }
-}
diff --git a/src/db/db/db.csproj b/src/db/db/db.csproj
deleted file mode 100644
index 9443291..0000000
--- a/src/db/db/db.csproj
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- db
- true
- true
- enable
-
-
- db
-
-
- com.companyname.db
- DF628685-6967-4B2C-9C95-74AFAF726243
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mste/mste.sln b/src/mste/mste.sln
deleted file mode 100644
index 3d240c8..0000000
--- a/src/mste/mste.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "mste", "mste\mste.csproj", "{1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.Release|Any CPU.Build.0 = Release|Any CPU
- {1BF05CCA-1B07-4ED0-A6A5-7A2C62855968}.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/src/mste/mste/App.xaml b/src/mste/mste/App.xaml
deleted file mode 100644
index 592492b..0000000
--- a/src/mste/mste/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mste/mste/App.xaml.cs b/src/mste/mste/App.xaml.cs
deleted file mode 100644
index f9cea4f..0000000
--- a/src/mste/mste/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace mste;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
diff --git a/src/mste/mste/AppShell.xaml b/src/mste/mste/AppShell.xaml
deleted file mode 100644
index d44da68..0000000
--- a/src/mste/mste/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/src/mste/mste/AppShell.xaml.cs b/src/mste/mste/AppShell.xaml.cs
deleted file mode 100644
index f68cc96..0000000
--- a/src/mste/mste/AppShell.xaml.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace mste;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- }
-}
diff --git a/src/mste/mste/MVVM/Models/Category.cs b/src/mste/mste/MVVM/Models/Category.cs
deleted file mode 100644
index 75dfdb8..0000000
--- a/src/mste/mste/MVVM/Models/Category.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Tasker.MVVM.Models
-{
-
- public class Category
- {
- public int Id { get; set; }
- public string CategoryName { get; set; }
- public string Color { get; set; }
- public int PendingTasks { get; set; }
- public float Percentage { get; set; }
- public bool IsSelected { get; set; }
-
- }
-}
diff --git a/src/mste/mste/MVVM/ViewModels/MainViewModel.cs b/src/mste/mste/MVVM/ViewModels/MainViewModel.cs
deleted file mode 100644
index f37e144..0000000
--- a/src/mste/mste/MVVM/ViewModels/MainViewModel.cs
+++ /dev/null
@@ -1,133 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tasker.MVVM.Models;
-
-namespace Tasker.MVVM.ViewModels
-{
- [AddINotifyPropertyChangedInterface]
- public class MainViewModel
- {
- public ObservableCollection Categories { get; set; }
- //public ObservableCollection Tasks { get; set; }
-
- public MainViewModel()
- {
- FillData();
- //Tasks.CollectionChanged += Tasks_CollectionChanged;
- }
-
- private void Tasks_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
- {
- // UpdateData();
- }
-
- private void FillData()
- {
- Categories = new ObservableCollection
- {
- new Category
- {
- Id = 1,
- CategoryName = ".NET MAUI Course",
- Color = "#CF14DF"
- },
- new Category
- {
- Id = 2,
- CategoryName = "Tutorials",
- Color = "#df6f14"
- },
- new Category
- {
- Id = 3,
- CategoryName = "Shopping",
- Color = "#14df80"
- }
- };
-
- //Tasks = new ObservableCollection
- //{
- // new MyTask
- // {
- // TaskName = "Upload exercise files",
- // Completed = false,
- // CategoryId = 1
- // },
- // new MyTask
- // {
- // TaskName = "Plan next course",
- // Completed = false,
- // CategoryId = 1
- // },
- // new MyTask
- // {
- // TaskName = "Upload new ASP.NET video on YouTube",
- // Completed = false,
- // CategoryId = 2
- // },
- // new MyTask
- // {
- // TaskName = "Fix Settings.cs class of the project",
- // Completed = false,
- // CategoryId = 2
- // },
- // new MyTask
- // {
- // TaskName = "Update github repository",
- // Completed = true,
- // CategoryId = 2
- // },
- // new MyTask
- // {
- // TaskName = "Buy eggs",
- // Completed = false,
- // CategoryId = 3
- // },
- // new MyTask
- // {
- // TaskName = "Go for the pepperoni pizza",
- // Completed = false,
- // CategoryId = 3
- // },
- //};
-
- // UpdateData();
- }
-
- //public void UpdateData()
- //{
- // foreach (var c in Categories)
- // {
- // var tasks = from t in Tasks
- // where t.CategoryId == c.Id
- // select t;
-
- // var completed = from t in tasks
- // where t.Completed == true
- // select t;
-
- // var notCompleted = from t in tasks
- // where t.Completed == false
- // select t;
-
-
-
- // c.PendingTasks = notCompleted.Count();
- // c.Percentage = (float)completed.Count() / (float)tasks.Count();
- // }
- // foreach (var t in Tasks)
- // {
- // var catColor =
- // (from c in Categories
- // where c.Id == t.CategoryId
- // select c.Color).FirstOrDefault();
- // t.TaskColor = catColor;
- // }
- //}
-
- }
-}
diff --git a/src/mste/mste/MVVM/Views/MainView.xaml b/src/mste/mste/MVVM/Views/MainView.xaml
deleted file mode 100644
index 6dc57a7..0000000
--- a/src/mste/mste/MVVM/Views/MainView.xaml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/mste/mste/MVVM/Views/MainView.xaml.cs b/src/mste/mste/MVVM/Views/MainView.xaml.cs
deleted file mode 100644
index a3f24a4..0000000
--- a/src/mste/mste/MVVM/Views/MainView.xaml.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-using Tasker.MVVM.ViewModels;
-
-namespace Tasker.MVVM.Views;
-
-public partial class MainView : ContentPage
-{
- private MainViewModel mainViewModel = new MainViewModel();
- public MainView()
- {
- InitializeComponent();
- BindingContext = mainViewModel;
- }
-
- private void checkBox_CheckedChanged(object sender, CheckedChangedEventArgs e)
- {
- mainViewModel.UpdateData();
- }
-
- private void Button_Clicked(object sender, EventArgs e)
- {
- var taskView = new NewTaskView
- {
- BindingContext = new NewTaskViewModel
- {
- Tasks = mainViewModel.Tasks,
- Categories = mainViewModel.Categories,
- }
- };
-
- Navigation.PushAsync(taskView);
- }
-}
\ No newline at end of file
diff --git a/src/mste/mste/MainPage.xaml b/src/mste/mste/MainPage.xaml
deleted file mode 100644
index 5f8eaf4..0000000
--- a/src/mste/mste/MainPage.xaml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mste/mste/MainPage.xaml.cs b/src/mste/mste/MainPage.xaml.cs
deleted file mode 100644
index e29a01f..0000000
--- a/src/mste/mste/MainPage.xaml.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-namespace mste;
-
-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);
- }
-}
-
diff --git a/src/mste/mste/MauiProgram.cs b/src/mste/mste/MauiProgram.cs
deleted file mode 100644
index 7d38135..0000000
--- a/src/mste/mste/MauiProgram.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-namespace mste;
-
-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");
- });
-
- return builder.Build();
- }
-}
diff --git a/src/mste/mste/Platforms/Android/AndroidManifest.xml b/src/mste/mste/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/mste/mste/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/mste/mste/Platforms/Android/MainActivity.cs b/src/mste/mste/Platforms/Android/MainActivity.cs
deleted file mode 100644
index ffb84dd..0000000
--- a/src/mste/mste/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace mste;
-
-[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/src/mste/mste/Platforms/Android/MainApplication.cs b/src/mste/mste/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 59bd3f9..0000000
--- a/src/mste/mste/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace mste;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/mste/mste/Platforms/Android/Resources/values/colors.xml b/src/mste/mste/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/mste/mste/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/mste/mste/Platforms/MacCatalyst/AppDelegate.cs b/src/mste/mste/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index 4713eb0..0000000
--- a/src/mste/mste/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace mste;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/mste/mste/Platforms/MacCatalyst/Info.plist b/src/mste/mste/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/mste/mste/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/src/mste/mste/Platforms/MacCatalyst/Program.cs b/src/mste/mste/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 956a980..0000000
--- a/src/mste/mste/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace mste;
-
-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));
- }
-}
diff --git a/src/mste/mste/Platforms/Tizen/Main.cs b/src/mste/mste/Platforms/Tizen/Main.cs
deleted file mode 100644
index 4d16db5..0000000
--- a/src/mste/mste/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace mste;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/mste/mste/Platforms/Tizen/tizen-manifest.xml b/src/mste/mste/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index cfa884d..0000000
--- a/src/mste/mste/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/src/mste/mste/Platforms/Windows/App.xaml b/src/mste/mste/Platforms/Windows/App.xaml
deleted file mode 100644
index 412fc75..0000000
--- a/src/mste/mste/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/mste/mste/Platforms/Windows/App.xaml.cs b/src/mste/mste/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index a103d3f..0000000
--- a/src/mste/mste/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 mste.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();
-}
-
diff --git a/src/mste/mste/Platforms/Windows/Package.appxmanifest b/src/mste/mste/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/mste/mste/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mste/mste/Platforms/Windows/app.manifest b/src/mste/mste/Platforms/Windows/app.manifest
deleted file mode 100644
index 6c82aa6..0000000
--- a/src/mste/mste/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/mste/mste/Platforms/iOS/AppDelegate.cs b/src/mste/mste/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index 4713eb0..0000000
--- a/src/mste/mste/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace mste;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/mste/mste/Platforms/iOS/Info.plist b/src/mste/mste/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/mste/mste/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/src/mste/mste/Platforms/iOS/Program.cs b/src/mste/mste/Platforms/iOS/Program.cs
deleted file mode 100644
index 956a980..0000000
--- a/src/mste/mste/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace mste;
-
-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));
- }
-}
diff --git a/src/mste/mste/Properties/launchSettings.json b/src/mste/mste/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/mste/mste/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/src/mste/mste/Resources/AppIcon/appicon.svg b/src/mste/mste/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/mste/mste/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/mste/mste/Resources/AppIcon/appiconfg.svg b/src/mste/mste/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/mste/mste/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/mste/mste/Resources/Fonts/OpenSans-Regular.ttf b/src/mste/mste/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/mste/mste/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/mste/mste/Resources/Fonts/OpenSans-Semibold.ttf b/src/mste/mste/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/mste/mste/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/mste/mste/Resources/Images/dotnet_bot.svg b/src/mste/mste/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/mste/mste/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/mste/mste/Resources/Raw/AboutAssets.txt b/src/mste/mste/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/mste/mste/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/src/mste/mste/Resources/Splash/splash.svg b/src/mste/mste/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/mste/mste/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/mste/mste/Resources/Styles/Colors.xaml b/src/mste/mste/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/mste/mste/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/src/mste/mste/Resources/Styles/Styles.xaml b/src/mste/mste/Resources/Styles/Styles.xaml
deleted file mode 100644
index 1ec9d55..0000000
--- a/src/mste/mste/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/mste/mste/mste.csproj b/src/mste/mste/mste.csproj
deleted file mode 100644
index 32c8775..0000000
--- a/src/mste/mste/mste.csproj
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- mste
- true
- true
- enable
-
-
- mste
-
-
- com.companyname.mste
- 7C8CA529-E8B5-4927-AD77-F2D8B3EA277E
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MSBuild:Compile
-
-
-
-
diff --git a/src/proo/proo.sln b/src/proo/proo.sln
deleted file mode 100644
index 6142cc5..0000000
--- a/src/proo/proo.sln
+++ /dev/null
@@ -1,27 +0,0 @@
-
-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}") = "proo", "proo\proo.csproj", "{F7D2D8F7-916E-4A71-BEA6-9285DA347088}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.Release|Any CPU.Build.0 = Release|Any CPU
- {F7D2D8F7-916E-4A71-BEA6-9285DA347088}.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/src/proo/proo/App.xaml b/src/proo/proo/App.xaml
deleted file mode 100644
index d29f762..0000000
--- a/src/proo/proo/App.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/proo/proo/App.xaml.cs b/src/proo/proo/App.xaml.cs
deleted file mode 100644
index 8fbbc68..0000000
--- a/src/proo/proo/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace proo;
-
-public partial class App : Application
-{
- public App()
- {
- InitializeComponent();
-
- MainPage = new AppShell();
- }
-}
diff --git a/src/proo/proo/AppShell.xaml b/src/proo/proo/AppShell.xaml
deleted file mode 100644
index 402e759..0000000
--- a/src/proo/proo/AppShell.xaml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
diff --git a/src/proo/proo/AppShell.xaml.cs b/src/proo/proo/AppShell.xaml.cs
deleted file mode 100644
index 68babb7..0000000
--- a/src/proo/proo/AppShell.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace proo;
-
-public partial class AppShell : Shell
-{
- public AppShell()
- {
- InitializeComponent();
- ///creation de route pour passer d 'une page a une autre
- Routing.RegisterRoute(nameof(DetailPage), typeof(DetailPage));
- }
-}
diff --git a/src/proo/proo/DetailPage.xaml b/src/proo/proo/DetailPage.xaml
deleted file mode 100644
index d37a9db..0000000
--- a/src/proo/proo/DetailPage.xaml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/proo/proo/DetailPage.xaml.cs b/src/proo/proo/DetailPage.xaml.cs
deleted file mode 100644
index 78052f4..0000000
--- a/src/proo/proo/DetailPage.xaml.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using proo.ViewModel;
-
-namespace proo;
-
-public partial class DetailPage : ContentPage
-{
- public DetailPage(DetailViewModel vm)
- {
- InitializeComponent();
- BindingContext = vm;
- }
-}
\ No newline at end of file
diff --git a/src/proo/proo/MainPage.xaml b/src/proo/proo/MainPage.xaml
deleted file mode 100644
index b052975..0000000
--- a/src/proo/proo/MainPage.xaml
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/proo/proo/MainPage.xaml.cs b/src/proo/proo/MainPage.xaml.cs
deleted file mode 100644
index a2e86cb..0000000
--- a/src/proo/proo/MainPage.xaml.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using proo.ViewModel;
-
-namespace proo;
-
-public partial class MainPage : ContentPage
-{
-
-
- public MainPage( MainViewModel vm)
- {
- InitializeComponent();
- BindingContext = vm;
- }
-
- private void OnCounterClicked(object sender, EventArgs e)
- {
-
- }
-}
-
diff --git a/src/proo/proo/MauiProgram.cs b/src/proo/proo/MauiProgram.cs
deleted file mode 100644
index f97ef84..0000000
--- a/src/proo/proo/MauiProgram.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using proo.ViewModel;
-
-namespace proo;
-
-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");
- });
- builder.Services.AddSingleton();
- builder.Services.AddSingleton();
-
- builder.Services.AddTransient();
- builder.Services.AddTransient();
-
- return builder.Build();
- }
-}
diff --git a/src/proo/proo/Platforms/Android/AndroidManifest.xml b/src/proo/proo/Platforms/Android/AndroidManifest.xml
deleted file mode 100644
index e9937ad..0000000
--- a/src/proo/proo/Platforms/Android/AndroidManifest.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/proo/proo/Platforms/Android/MainActivity.cs b/src/proo/proo/Platforms/Android/MainActivity.cs
deleted file mode 100644
index c790431..0000000
--- a/src/proo/proo/Platforms/Android/MainActivity.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-using Android.App;
-using Android.Content.PM;
-using Android.OS;
-
-namespace proo;
-
-[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/src/proo/proo/Platforms/Android/MainApplication.cs b/src/proo/proo/Platforms/Android/MainApplication.cs
deleted file mode 100644
index 8b601ed..0000000
--- a/src/proo/proo/Platforms/Android/MainApplication.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Android.App;
-using Android.Runtime;
-
-namespace proo;
-
-[Application]
-public class MainApplication : MauiApplication
-{
- public MainApplication(IntPtr handle, JniHandleOwnership ownership)
- : base(handle, ownership)
- {
- }
-
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/proo/proo/Platforms/Android/Resources/values/colors.xml b/src/proo/proo/Platforms/Android/Resources/values/colors.xml
deleted file mode 100644
index c04d749..0000000
--- a/src/proo/proo/Platforms/Android/Resources/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #512BD4
- #2B0B98
- #2B0B98
-
\ No newline at end of file
diff --git a/src/proo/proo/Platforms/MacCatalyst/AppDelegate.cs b/src/proo/proo/Platforms/MacCatalyst/AppDelegate.cs
deleted file mode 100644
index d1f622b..0000000
--- a/src/proo/proo/Platforms/MacCatalyst/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace proo;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/proo/proo/Platforms/MacCatalyst/Info.plist b/src/proo/proo/Platforms/MacCatalyst/Info.plist
deleted file mode 100644
index c96dd0a..0000000
--- a/src/proo/proo/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/src/proo/proo/Platforms/MacCatalyst/Program.cs b/src/proo/proo/Platforms/MacCatalyst/Program.cs
deleted file mode 100644
index 9a44cea..0000000
--- a/src/proo/proo/Platforms/MacCatalyst/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace proo;
-
-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));
- }
-}
diff --git a/src/proo/proo/Platforms/Tizen/Main.cs b/src/proo/proo/Platforms/Tizen/Main.cs
deleted file mode 100644
index a614f2e..0000000
--- a/src/proo/proo/Platforms/Tizen/Main.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using Microsoft.Maui;
-using Microsoft.Maui.Hosting;
-
-namespace proo;
-
-class Program : MauiApplication
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-
- static void Main(string[] args)
- {
- var app = new Program();
- app.Run(args);
- }
-}
diff --git a/src/proo/proo/Platforms/Tizen/tizen-manifest.xml b/src/proo/proo/Platforms/Tizen/tizen-manifest.xml
deleted file mode 100644
index 4c0d587..0000000
--- a/src/proo/proo/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/src/proo/proo/Platforms/Windows/App.xaml b/src/proo/proo/Platforms/Windows/App.xaml
deleted file mode 100644
index 6f02df7..0000000
--- a/src/proo/proo/Platforms/Windows/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
diff --git a/src/proo/proo/Platforms/Windows/App.xaml.cs b/src/proo/proo/Platforms/Windows/App.xaml.cs
deleted file mode 100644
index d380f54..0000000
--- a/src/proo/proo/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 proo.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();
-}
-
diff --git a/src/proo/proo/Platforms/Windows/Package.appxmanifest b/src/proo/proo/Platforms/Windows/Package.appxmanifest
deleted file mode 100644
index 2bcb11e..0000000
--- a/src/proo/proo/Platforms/Windows/Package.appxmanifest
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
- $placeholder$
- User Name
- $placeholder$.png
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/proo/proo/Platforms/Windows/app.manifest b/src/proo/proo/Platforms/Windows/app.manifest
deleted file mode 100644
index d12ebb6..0000000
--- a/src/proo/proo/Platforms/Windows/app.manifest
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
- true/PM
- PerMonitorV2, PerMonitor
-
-
-
diff --git a/src/proo/proo/Platforms/iOS/AppDelegate.cs b/src/proo/proo/Platforms/iOS/AppDelegate.cs
deleted file mode 100644
index d1f622b..0000000
--- a/src/proo/proo/Platforms/iOS/AppDelegate.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Foundation;
-
-namespace proo;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
-{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
-}
diff --git a/src/proo/proo/Platforms/iOS/Info.plist b/src/proo/proo/Platforms/iOS/Info.plist
deleted file mode 100644
index 0004a4f..0000000
--- a/src/proo/proo/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/src/proo/proo/Platforms/iOS/Program.cs b/src/proo/proo/Platforms/iOS/Program.cs
deleted file mode 100644
index 9a44cea..0000000
--- a/src/proo/proo/Platforms/iOS/Program.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using ObjCRuntime;
-using UIKit;
-
-namespace proo;
-
-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));
- }
-}
diff --git a/src/proo/proo/Properties/launchSettings.json b/src/proo/proo/Properties/launchSettings.json
deleted file mode 100644
index edf8aad..0000000
--- a/src/proo/proo/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/src/proo/proo/Resources/AppIcon/appicon.svg b/src/proo/proo/Resources/AppIcon/appicon.svg
deleted file mode 100644
index 9d63b65..0000000
--- a/src/proo/proo/Resources/AppIcon/appicon.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/proo/proo/Resources/AppIcon/appiconfg.svg b/src/proo/proo/Resources/AppIcon/appiconfg.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/proo/proo/Resources/AppIcon/appiconfg.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/proo/proo/Resources/Fonts/OpenSans-Regular.ttf b/src/proo/proo/Resources/Fonts/OpenSans-Regular.ttf
deleted file mode 100644
index 6cbaf4b..0000000
Binary files a/src/proo/proo/Resources/Fonts/OpenSans-Regular.ttf and /dev/null differ
diff --git a/src/proo/proo/Resources/Fonts/OpenSans-Semibold.ttf b/src/proo/proo/Resources/Fonts/OpenSans-Semibold.ttf
deleted file mode 100644
index 554d68a..0000000
Binary files a/src/proo/proo/Resources/Fonts/OpenSans-Semibold.ttf and /dev/null differ
diff --git a/src/proo/proo/Resources/Images/dotnet_bot.svg b/src/proo/proo/Resources/Images/dotnet_bot.svg
deleted file mode 100644
index abfaff2..0000000
--- a/src/proo/proo/Resources/Images/dotnet_bot.svg
+++ /dev/null
@@ -1,93 +0,0 @@
-
diff --git a/src/proo/proo/Resources/Raw/AboutAssets.txt b/src/proo/proo/Resources/Raw/AboutAssets.txt
deleted file mode 100644
index 15d6244..0000000
--- a/src/proo/proo/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/src/proo/proo/Resources/Splash/splash.svg b/src/proo/proo/Resources/Splash/splash.svg
deleted file mode 100644
index 21dfb25..0000000
--- a/src/proo/proo/Resources/Splash/splash.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/src/proo/proo/Resources/Styles/Colors.xaml b/src/proo/proo/Resources/Styles/Colors.xaml
deleted file mode 100644
index 245758b..0000000
--- a/src/proo/proo/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/src/proo/proo/Resources/Styles/Styles.xaml b/src/proo/proo/Resources/Styles/Styles.xaml
deleted file mode 100644
index 1ec9d55..0000000
--- a/src/proo/proo/Resources/Styles/Styles.xaml
+++ /dev/null
@@ -1,384 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/proo/proo/ViewModel/DetailViewModel.cs b/src/proo/proo/ViewModel/DetailViewModel.cs
deleted file mode 100644
index 2431874..0000000
--- a/src/proo/proo/ViewModel/DetailViewModel.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-
-using CommunityToolkit.Mvvm.ComponentModel;
-using CommunityToolkit.Mvvm.Input;
-
-
-namespace proo.ViewModel;
- [QueryProperty("Text", "Text")]
-
-
- public partial class DetailViewModel: ObservableObject
- {
- [ObservableProperty]
- string text;
- [RelayCommand]
- async Task GoBack()
- {
- await Shell.Current.GoToAsync("..");
- }
-
-}
-
diff --git a/src/proo/proo/ViewModel/MainViewModel.cs b/src/proo/proo/ViewModel/MainViewModel.cs
deleted file mode 100644
index 2c394de..0000000
--- a/src/proo/proo/ViewModel/MainViewModel.cs
+++ /dev/null
@@ -1,48 +0,0 @@
-using CommunityToolkit.Mvvm.ComponentModel;
-using CommunityToolkit.Mvvm.Input;
-using System;
-using System.Collections.Generic;
-using System.Collections.ObjectModel;
-using System.ComponentModel;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace proo.ViewModel
-{
- public partial class MainViewModel : ObservableObject
- {
- [ObservableProperty]
- public ObservableCollection items;
- [ObservableProperty]
- string text;
- public MainViewModel()
- {
- Items = new ObservableCollection();
-
- }
-
-
- [RelayCommand]
- void Add()
- { if (string.IsNullOrWhiteSpace(Text))
- return;
- Items.Add(Text);
- Text = string.Empty;
- }
- [RelayCommand]
- void Delete(string s)
- {
- if (Items.Contains(s))
- {
- Items.Remove(s);
- }
- }
- [RelayCommand]
- async Task Tap(String s)
- {
- await Shell.Current.GoToAsync($"{nameof(DetailPage)}?Text={s}");
-
- }
- }
-}
diff --git a/src/proo/proo/proo.csproj b/src/proo/proo/proo.csproj
deleted file mode 100644
index f20cf70..0000000
--- a/src/proo/proo/proo.csproj
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041.0
-
-
- Exe
- proo
- true
- true
- enable
-
-
- proo
-
-
- com.companyname.proo
- 9E901585-B6D0-41F2-A1FA-FFC030DE416E
-
-
- 1.0
- 1
-
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
- 6.5
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MSBuild:Compile
-
-
-
-