This commit is contained in:
Родитель
bf3144e6bb
Коммит
fb5d2221a8
|
@ -1,4 +1,6 @@
|
|||
namespace Microsoft.Maui.Controls.Compatibility.ControlGallery.WinUI
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Microsoft.Maui.Controls.Compatibility.ControlGallery.WinUI
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides application-specific behavior to supplement the default Application class.
|
||||
|
|
|
@ -13,6 +13,7 @@ using Microsoft.Maui.Controls.Compatibility.ControlGallery.iOS;
|
|||
using Microsoft.Maui.Controls.Compatibility.ControlGallery.Issues;
|
||||
using Microsoft.Maui.Controls.Compatibility.Platform.iOS;
|
||||
using Microsoft.Maui.Controls.Platform;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using UIKit;
|
||||
using IOPath = System.IO.Path;
|
||||
using Size = Microsoft.Maui.Graphics.Size;
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace Microsoft.Maui.Controls.Hosting
|
|||
public static partial class AppHostBuilderExtensions
|
||||
{
|
||||
internal static MauiAppBuilder ConfigureCompatibilityLifecycleEvents(this MauiAppBuilder builder) =>
|
||||
builder.ConfigureLifecycleEvents(events => events.AddWindows(OnConfigureLifeCycle));
|
||||
builder.ConfigureLifecycleEvents(events => events.AddWindows(OnConfigureLifeCycle));
|
||||
|
||||
static void OnConfigureLifeCycle(IWindowsLifecycleBuilder windows)
|
||||
{
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
using Android.App;
|
||||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Maui.Controls.Sample.Profiling
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Maui.Controls.Sample.Profiling
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Maui.Controls.Sample.Profiling
|
||||
{
|
||||
|
|
|
@ -3,6 +3,7 @@ using Android.App;
|
|||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Controls;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Maui.Controls.Sample.Droid
|
||||
{
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
using Foundation;
|
||||
using UIKit;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
#if !NET6_0
|
||||
using Microsoft.Maui.Controls;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Maui.Controls.Sample.iOS
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Maui.Controls.Hosting;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace Microsoft.Maui.Controls.Core.UnitTests
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Maui.Graphics;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Microsoft.Maui.DeviceTests
|
||||
{
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
namespace Microsoft.Maui.DeviceTests.WinUI
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Microsoft.Maui.DeviceTests.WinUI
|
||||
{
|
||||
public partial class App : MauiWinUIApplication
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui.LifecycleEvents;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.Maui.LifecycleEvents;
|
||||
using Microsoft.Maui.TestUtils.DeviceTests.Runners;
|
||||
|
||||
namespace Microsoft.Maui.DeviceTests
|
||||
|
|
|
@ -2,6 +2,7 @@ using System;
|
|||
using BenchmarkDotNet.Attributes;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Microsoft.Maui.Handlers.Benchmarks
|
||||
{
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
using Android.Views;
|
||||
using AndroidX.Fragment.App;
|
||||
using Microsoft.Maui.DeviceTests.Stubs;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Xunit;
|
||||
|
||||
namespace Microsoft.Maui.DeviceTests
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.ApplicationModel;
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ using Android.App;
|
|||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Controls;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Samples.Droid
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Samples.iOS
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Samples.UWP
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace Samples.iOS
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Controls.Hosting;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.Maui.LifecycleEvents;
|
||||
|
||||
namespace Samples
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.ApplicationModel;
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
using Android.App;
|
||||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.ApplicationModel;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
using Android.App;
|
||||
using Android.Runtime;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.ApplicationModel;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Foundation;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace MauiApp._1
|
||||
{
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.UI.Xaml;
|
||||
using Windows.ApplicationModel;
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
using Microsoft.Maui.TestUtils.DeviceTests.Runners;
|
||||
using Microsoft.Maui.Hosting;
|
||||
using Microsoft.Maui.TestUtils.DeviceTests.Runners;
|
||||
|
||||
namespace Microsoft.Maui.TestUtils.DeviceTests.Sample
|
||||
{
|
||||
|
|
|
@ -107,7 +107,7 @@ namespace " + RootNamespace + @"
|
|||
{
|
||||
}
|
||||
|
||||
protected override global::Microsoft.Maui.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
protected override global::Microsoft.Maui.Hosting.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -202,7 +202,7 @@ namespace " + RootNamespace + @"
|
|||
[global::Foundation.Register(""" + visualDelegateName + @""")]
|
||||
partial class " + visualDelegateName + @" : global::Microsoft.Maui.MauiUIApplicationDelegate
|
||||
{
|
||||
protected override global::Microsoft.Maui.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
protected override global::Microsoft.Maui.Hosting.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -214,7 +214,7 @@ namespace " + RootNamespace + @"
|
|||
partial class " + headlessDelegateName + @" : global::Microsoft.Maui.TestUtils.DeviceTests.Runners.HeadlessRunner.MauiTestApplicationDelegate
|
||||
{
|
||||
|
||||
protected override global::Microsoft.Maui.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
protected override global::Microsoft.Maui.Hosting.MauiApp CreateMauiApp() => " + mauiProgramFullName + @".CreateMauiApp();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче