public StartupTests(ITestOutputHelper output)
            : base(output, "Maui.Core.App")
        {
            Generator.AddMSBuildProperty("TargetFrameworkIdentifier", "Xamarin.iOS");
            Generator.AddMSBuildProperty("OutputType", "Exe");

            // Add our startup so the startup generators will even run
            this.Generator.AddSource(@"
using Maui.Core.App;

[assembly: MauiStartup(typeof(MyApp.Startup))]

namespace MyApp
{
	public class Startup : IStartup
	{
		public void Configure(IApplicationBuilder app)
		{
		}
	}
}
");
        }