diff --git a/MyFirstMauiApp/.vscode/launch.json b/MyFirstMauiApp/.vscode/launch.json
new file mode 100644
index 0000000..a81bd58
--- /dev/null
+++ b/MyFirstMauiApp/.vscode/launch.json
@@ -0,0 +1,14 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": ".NET MAUI",
+ "type": "maui",
+ "request": "launch",
+ "preLaunchTask": "maui: Build"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/App.xaml b/MyFirstMauiApp/MauiUI/App.xaml
new file mode 100644
index 0000000..526f535
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/App.xaml.cs b/MyFirstMauiApp/MauiUI/App.xaml.cs
new file mode 100644
index 0000000..f7072d4
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace MauiUI
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml b/MyFirstMauiApp/MauiUI/AppShell.xaml
new file mode 100644
index 0000000..72fe16f
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/AppShell.xaml.cs b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs
new file mode 100644
index 0000000..8263ca1
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace MauiUI
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/MainPage.xaml b/MyFirstMauiApp/MauiUI/MainPage.xaml
new file mode 100644
index 0000000..e68561a
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/MainPage.xaml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/MainPage.xaml.cs b/MyFirstMauiApp/MauiUI/MainPage.xaml.cs
new file mode 100644
index 0000000..cb72c98
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/MainPage.xaml.cs
@@ -0,0 +1,34 @@
+using System.Diagnostics;
+
+namespace MauiUI
+{
+ public partial class MainPage : ContentPage
+ {
+ public const double MyFontSize = 28;
+
+ private string _fileName = Path.Combine(FileSystem.AppDataDirectory, "notes.txt");
+
+ public MainPage()
+ {
+ InitializeComponent();
+ if (File.Exists(_fileName))
+ editor.Text = File.ReadAllText(_fileName);
+ }
+
+ private void LoginButton_Clicked(object sender, EventArgs e)
+ {
+ Debug.WriteLine("Clicked!");
+ }
+
+ private void OnSaveButton_Clicked(object sender, EventArgs e)
+ {
+ File.WriteAllText(_fileName, editor.Text);
+ }
+
+ private void OnDeleteButton_Clicked(object sender, EventArgs e)
+ {
+ editor.Text = "";
+ File.WriteAllText(_fileName, editor.Text);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/MauiProgram.cs b/MyFirstMauiApp/MauiUI/MauiProgram.cs
new file mode 100644
index 0000000..80e4552
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace MauiUI
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/MauiUI.csproj b/MyFirstMauiApp/MauiUI/MauiUI.csproj
new file mode 100644
index 0000000..163acd5
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/MauiUI.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ MauiUI
+ true
+ true
+ enable
+
+
+ MauiUI
+
+
+ com.companyname.mauiui
+ aedb7363-3763-4874-a41c-bdd548651164
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Android/AndroidManifest.xml b/MyFirstMauiApp/MauiUI/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Android/MainActivity.cs b/MyFirstMauiApp/MauiUI/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..bdac09a
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace MauiUI
+{
+ [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/MyFirstMauiApp/MauiUI/Platforms/Android/MainApplication.cs b/MyFirstMauiApp/MauiUI/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..ecef029
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace MauiUI
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Android/Resources/values/colors.xml b/MyFirstMauiApp/MauiUI/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/AppDelegate.cs b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..7dc2a6a
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MauiUI
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Info.plist b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..c96dd0a
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Program.cs b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..c39f7f5
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MauiUI
+{
+ 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/MyFirstMauiApp/MauiUI/Platforms/Tizen/Main.cs b/MyFirstMauiApp/MauiUI/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..ed44011
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace MauiUI
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Tizen/tizen-manifest.xml b/MyFirstMauiApp/MauiUI/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..cb45491
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml b/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..1572c70
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml.cs b/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..48deecb
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+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 MauiUI.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/MyFirstMauiApp/MauiUI/Platforms/Windows/Package.appxmanifest b/MyFirstMauiApp/MauiUI/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..61eb081
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/Windows/app.manifest b/MyFirstMauiApp/MauiUI/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..cfba0f9
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/iOS/AppDelegate.cs b/MyFirstMauiApp/MauiUI/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..7dc2a6a
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace MauiUI
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/MyFirstMauiApp/MauiUI/Platforms/iOS/Info.plist b/MyFirstMauiApp/MauiUI/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/MyFirstMauiApp/MauiUI/Platforms/iOS/Program.cs b/MyFirstMauiApp/MauiUI/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..c39f7f5
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace MauiUI
+{
+ 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/MyFirstMauiApp/MauiUI/Properties/launchSettings.json b/MyFirstMauiApp/MauiUI/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Resources/AppIcon/appicon.svg b/MyFirstMauiApp/MauiUI/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Resources/AppIcon/appiconfg.svg b/MyFirstMauiApp/MauiUI/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Regular.ttf b/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..dadcb01
Binary files /dev/null and b/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Semibold.ttf b/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..5601642
Binary files /dev/null and b/MyFirstMauiApp/MauiUI/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/MyFirstMauiApp/MauiUI/Resources/Images/dotnet_bot.svg b/MyFirstMauiApp/MauiUI/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..abfaff2
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/MyFirstMauiApp/MauiUI/Resources/Raw/AboutAssets.txt b/MyFirstMauiApp/MauiUI/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+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/MyFirstMauiApp/MauiUI/Resources/Splash/splash.svg b/MyFirstMauiApp/MauiUI/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/MyFirstMauiApp/MauiUI/Resources/Styles/Colors.xaml b/MyFirstMauiApp/MauiUI/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..245758b
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #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/MyFirstMauiApp/MauiUI/Resources/Styles/Styles.xaml b/MyFirstMauiApp/MauiUI/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..dc4a034
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/MyFirstMauiApp/MauiUI/SharedResources.cs b/MyFirstMauiApp/MauiUI/SharedResources.cs
new file mode 100644
index 0000000..23d8cda
--- /dev/null
+++ b/MyFirstMauiApp/MauiUI/SharedResources.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MauiUI
+{
+ static class SharedResources
+ {
+ public static readonly Color FontColor = Color.FromRgb(0, 0, 0xFF);
+ public static readonly Color BackgroundColor = Color.FromRgb(0xFF, 0xF0, 0xAD);
+ }
+}
diff --git a/MyFirstMauiApp/MyFirstMauiApp.sln b/MyFirstMauiApp/MyFirstMauiApp.sln
index 295bff2..ca69765 100644
--- a/MyFirstMauiApp/MyFirstMauiApp.sln
+++ b/MyFirstMauiApp/MyFirstMauiApp.sln
@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34511.84
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Phoneword", "Phoneword\Phoneword.csproj", "{B3546A62-5BF5-4659-A76C-626F5781CDA4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Phoneword", "Phoneword\Phoneword.csproj", "{B3546A62-5BF5-4659-A76C-626F5781CDA4}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MauiUI", "MauiUI\MauiUI.csproj", "{62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -17,6 +19,12 @@ Global
{B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Build.0 = Release|Any CPU
{B3546A62-5BF5-4659-A76C-626F5781CDA4}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {62F41B46-D4DA-492C-B4B1-7B09FDC97E9F}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE