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/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/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 - - - -