Add project files.

This commit is contained in:
2025-08-17 08:19:53 +02:00
parent 41747389b3
commit e29c34d463
37 changed files with 1157 additions and 0 deletions

View File

@ -0,0 +1,10 @@
using Foundation;
namespace AdventureWorks.MAUI
{
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}
}