blob: 9b1b0a9c768af9f8cde835acb5dcb8cb503081c6 [file] [log] [blame]
using System.Diagnostics.CodeAnalysis;
namespace MauiTestApplication;
/// <inheritdoc/>
[SuppressMessage("Naming", "CA1724:Type names should not match namespaces")]
[SuppressMessage("Microsoft.Maintainability", "CA1501:AvoidExcessiveInheritance")]
public partial class App : Application
{
/// <inheritdoc/>
public App() => InitializeComponent();
/// <inheritdoc/>
protected override Window CreateWindow(IActivationState? activationState)
=> new(new AppShell());
}