diff --git a/DougShared/Class1.cs b/DougShared/Class1.cs
new file mode 100644
index 0000000..0c59c6d
--- /dev/null
+++ b/DougShared/Class1.cs
@@ -0,0 +1,7 @@
+namespace DougShared
+{
+ public class Class1
+ {
+
+ }
+}
diff --git a/DougShared/DougShared.csproj b/DougShared/DougShared.csproj
new file mode 100644
index 0000000..fa71b7a
--- /dev/null
+++ b/DougShared/DougShared.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+
+
diff --git a/DoughnutApi/Controllers/WeatherForecastController.cs b/DoughnutApi/Controllers/WeatherForecastController.cs
new file mode 100644
index 0000000..a5bd32d
--- /dev/null
+++ b/DoughnutApi/Controllers/WeatherForecastController.cs
@@ -0,0 +1,33 @@
+using Microsoft.AspNetCore.Mvc;
+
+namespace DoughnutApi.Controllers
+{
+ [ApiController]
+ [Route("[controller]")]
+ public class WeatherForecastController : ControllerBase
+ {
+ private static readonly string[] Summaries = new[]
+ {
+ "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
+ };
+
+ private readonly ILogger _logger;
+
+ public WeatherForecastController(ILogger logger)
+ {
+ _logger = logger;
+ }
+
+ [HttpGet(Name = "GetWeatherForecast")]
+ public IEnumerable Get()
+ {
+ return Enumerable.Range(1, 5).Select(index => new WeatherForecast
+ {
+ Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
+ TemperatureC = Random.Shared.Next(-20, 55),
+ Summary = Summaries[Random.Shared.Next(Summaries.Length)]
+ })
+ .ToArray();
+ }
+ }
+}
diff --git a/DoughnutApi/DoughnutApi.csproj b/DoughnutApi/DoughnutApi.csproj
new file mode 100644
index 0000000..ba558e4
--- /dev/null
+++ b/DoughnutApi/DoughnutApi.csproj
@@ -0,0 +1,14 @@
+
+
+
+ net8.0
+ enable
+ enable
+ true
+
+
+
+
+
+
+
diff --git a/DoughnutApi/DoughnutApi.http b/DoughnutApi/DoughnutApi.http
new file mode 100644
index 0000000..b8317f4
--- /dev/null
+++ b/DoughnutApi/DoughnutApi.http
@@ -0,0 +1,6 @@
+@DoughnutApi_HostAddress = http://localhost:5090
+
+GET {{DoughnutApi_HostAddress}}/weatherforecast/
+Accept: application/json
+
+###
diff --git a/DoughnutApi/Program.cs b/DoughnutApi/Program.cs
new file mode 100644
index 0000000..48863a6
--- /dev/null
+++ b/DoughnutApi/Program.cs
@@ -0,0 +1,25 @@
+var builder = WebApplication.CreateBuilder(args);
+
+// Add services to the container.
+
+builder.Services.AddControllers();
+// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
+builder.Services.AddEndpointsApiExplorer();
+builder.Services.AddSwaggerGen();
+
+var app = builder.Build();
+
+// Configure the HTTP request pipeline.
+if (app.Environment.IsDevelopment())
+{
+ app.UseSwagger();
+ app.UseSwaggerUI();
+}
+
+app.UseHttpsRedirection();
+
+app.UseAuthorization();
+
+app.MapControllers();
+
+app.Run();
diff --git a/DoughnutApi/Properties/launchSettings.json b/DoughnutApi/Properties/launchSettings.json
new file mode 100644
index 0000000..f2a8561
--- /dev/null
+++ b/DoughnutApi/Properties/launchSettings.json
@@ -0,0 +1,41 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:18401",
+ "sslPort": 44309
+ }
+ },
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "launchUrl": "swagger",
+ "applicationUrl": "http://localhost:5090",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "launchUrl": "swagger",
+ "applicationUrl": "https://localhost:7279;http://localhost:5090",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "swagger",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/DoughnutApi/WeatherForecast.cs b/DoughnutApi/WeatherForecast.cs
new file mode 100644
index 0000000..fa89ed8
--- /dev/null
+++ b/DoughnutApi/WeatherForecast.cs
@@ -0,0 +1,13 @@
+namespace DoughnutApi
+{
+ public class WeatherForecast
+ {
+ public DateOnly Date { get; set; }
+
+ public int TemperatureC { get; set; }
+
+ public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
+
+ public string? Summary { get; set; }
+ }
+}
diff --git a/DoughnutApi/appsettings.Development.json b/DoughnutApi/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/DoughnutApi/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/DoughnutApi/appsettings.json b/DoughnutApi/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/DoughnutApi/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/DoughnutApp.sln b/DoughnutApp.sln
new file mode 100644
index 0000000..47e3895
--- /dev/null
+++ b/DoughnutApp.sln
@@ -0,0 +1,39 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34511.84
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DoughnutApp", "DoughnutApp\DoughnutApp.csproj", "{033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DoughnutApi", "DoughnutApi\DoughnutApi.csproj", "{B2BB3238-D5AF-4776-9C69-D56CA5024839}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DougShared", "DougShared\DougShared.csproj", "{55F084A3-4F5A-4F50-9F3B-79C93133B64E}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {033F76B9-EF3E-4EBA-A5CE-A8AF2C57944E}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {B2BB3238-D5AF-4776-9C69-D56CA5024839}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B2BB3238-D5AF-4776-9C69-D56CA5024839}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B2BB3238-D5AF-4776-9C69-D56CA5024839}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {B2BB3238-D5AF-4776-9C69-D56CA5024839}.Release|Any CPU.Build.0 = Release|Any CPU
+ {55F084A3-4F5A-4F50-9F3B-79C93133B64E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {55F084A3-4F5A-4F50-9F3B-79C93133B64E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {55F084A3-4F5A-4F50-9F3B-79C93133B64E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {55F084A3-4F5A-4F50-9F3B-79C93133B64E}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {F831354C-8457-45EC-872F-0BB9C423FAA4}
+ EndGlobalSection
+EndGlobal
diff --git a/DoughnutApp/App.xaml b/DoughnutApp/App.xaml
new file mode 100644
index 0000000..091cd40
--- /dev/null
+++ b/DoughnutApp/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DoughnutApp/App.xaml.cs b/DoughnutApp/App.xaml.cs
new file mode 100644
index 0000000..a6cc832
--- /dev/null
+++ b/DoughnutApp/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace DoughnutApp
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/DoughnutApp/AppShell.xaml b/DoughnutApp/AppShell.xaml
new file mode 100644
index 0000000..3165444
--- /dev/null
+++ b/DoughnutApp/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/DoughnutApp/AppShell.xaml.cs b/DoughnutApp/AppShell.xaml.cs
new file mode 100644
index 0000000..57606b1
--- /dev/null
+++ b/DoughnutApp/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace DoughnutApp
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/DoughnutApp/DoughnutApp.csproj b/DoughnutApp/DoughnutApp.csproj
new file mode 100644
index 0000000..f3f258b
--- /dev/null
+++ b/DoughnutApp/DoughnutApp.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ DoughnutApp
+ true
+ true
+ enable
+ enable
+
+
+ DoughnutApp
+
+
+ com.companyname.doughnutapp
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DoughnutApp/MainPage.xaml b/DoughnutApp/MainPage.xaml
new file mode 100644
index 0000000..8809b8b
--- /dev/null
+++ b/DoughnutApp/MainPage.xaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DoughnutApp/MainPage.xaml.cs b/DoughnutApp/MainPage.xaml.cs
new file mode 100644
index 0000000..c5842d0
--- /dev/null
+++ b/DoughnutApp/MainPage.xaml.cs
@@ -0,0 +1,25 @@
+namespace DoughnutApp
+{
+ 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/DoughnutApp/MauiProgram.cs b/DoughnutApp/MauiProgram.cs
new file mode 100644
index 0000000..71fe6ad
--- /dev/null
+++ b/DoughnutApp/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace DoughnutApp
+{
+ 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/DoughnutApp/Platforms/Android/AndroidManifest.xml b/DoughnutApp/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/DoughnutApp/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DoughnutApp/Platforms/Android/MainActivity.cs b/DoughnutApp/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..6822309
--- /dev/null
+++ b/DoughnutApp/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace DoughnutApp
+{
+ [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/DoughnutApp/Platforms/Android/MainApplication.cs b/DoughnutApp/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..c9f6fcf
--- /dev/null
+++ b/DoughnutApp/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace DoughnutApp
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/DoughnutApp/Platforms/Android/Resources/values/colors.xml b/DoughnutApp/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/DoughnutApp/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/DoughnutApp/Platforms/MacCatalyst/AppDelegate.cs b/DoughnutApp/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..5c6ac12
--- /dev/null
+++ b/DoughnutApp/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace DoughnutApp
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/DoughnutApp/Platforms/MacCatalyst/Entitlements.plist b/DoughnutApp/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/DoughnutApp/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/DoughnutApp/Platforms/MacCatalyst/Info.plist b/DoughnutApp/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/DoughnutApp/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/DoughnutApp/Platforms/MacCatalyst/Program.cs b/DoughnutApp/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..ed51167
--- /dev/null
+++ b/DoughnutApp/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace DoughnutApp
+{
+ 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/DoughnutApp/Platforms/Tizen/Main.cs b/DoughnutApp/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..de05d5e
--- /dev/null
+++ b/DoughnutApp/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace DoughnutApp
+{
+ 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/DoughnutApp/Platforms/Tizen/tizen-manifest.xml b/DoughnutApp/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..5dc760e
--- /dev/null
+++ b/DoughnutApp/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/DoughnutApp/Platforms/Windows/App.xaml b/DoughnutApp/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..d8229b2
--- /dev/null
+++ b/DoughnutApp/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/DoughnutApp/Platforms/Windows/App.xaml.cs b/DoughnutApp/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..52a1447
--- /dev/null
+++ b/DoughnutApp/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 DoughnutApp.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/DoughnutApp/Platforms/Windows/Package.appxmanifest b/DoughnutApp/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..b8e973e
--- /dev/null
+++ b/DoughnutApp/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DoughnutApp/Platforms/Windows/app.manifest b/DoughnutApp/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..60a7bae
--- /dev/null
+++ b/DoughnutApp/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/DoughnutApp/Platforms/iOS/AppDelegate.cs b/DoughnutApp/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..5c6ac12
--- /dev/null
+++ b/DoughnutApp/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace DoughnutApp
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/DoughnutApp/Platforms/iOS/Info.plist b/DoughnutApp/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/DoughnutApp/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/DoughnutApp/Platforms/iOS/Program.cs b/DoughnutApp/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..ed51167
--- /dev/null
+++ b/DoughnutApp/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace DoughnutApp
+{
+ 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/DoughnutApp/Properties/launchSettings.json b/DoughnutApp/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/DoughnutApp/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/DoughnutApp/Resources/AppIcon/appicon.svg b/DoughnutApp/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/DoughnutApp/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/DoughnutApp/Resources/AppIcon/appiconfg.svg b/DoughnutApp/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/DoughnutApp/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/DoughnutApp/Resources/Fonts/OpenSans-Regular.ttf b/DoughnutApp/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..9ab655d
Binary files /dev/null and b/DoughnutApp/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/DoughnutApp/Resources/Fonts/OpenSans-Semibold.ttf b/DoughnutApp/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..2b7468e
Binary files /dev/null and b/DoughnutApp/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/DoughnutApp/Resources/Images/dotnet_bot.png b/DoughnutApp/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/DoughnutApp/Resources/Images/dotnet_bot.png differ
diff --git a/DoughnutApp/Resources/Raw/AboutAssets.txt b/DoughnutApp/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..15d6244
--- /dev/null
+++ b/DoughnutApp/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/DoughnutApp/Resources/Splash/splash.svg b/DoughnutApp/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/DoughnutApp/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/DoughnutApp/Resources/Styles/Colors.xaml b/DoughnutApp/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/DoughnutApp/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DoughnutApp/Resources/Styles/Styles.xaml b/DoughnutApp/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..e0d36bb
--- /dev/null
+++ b/DoughnutApp/Resources/Styles/Styles.xaml
@@ -0,0 +1,426 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/DoughnutShared/Class1.cs b/DoughnutShared/Class1.cs
new file mode 100644
index 0000000..4d98b84
--- /dev/null
+++ b/DoughnutShared/Class1.cs
@@ -0,0 +1,7 @@
+namespace DoughnutShared
+{
+ public class Class1
+ {
+
+ }
+}
diff --git a/DoughnutShared/DoughnutShared.csproj b/DoughnutShared/DoughnutShared.csproj
new file mode 100644
index 0000000..fa71b7a
--- /dev/null
+++ b/DoughnutShared/DoughnutShared.csproj
@@ -0,0 +1,9 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+
+