onnxruntime/csharp/sample/InferenceSample/Microsoft.ML.OnnxRuntime.InferenceSample.Maui/Platforms/iOS/AppDelegate.cs

10 lines
239 B
C#
Raw Normal View History

using Foundation;
namespace Microsoft.ML.OnnxRuntime.InferenceSample.Maui;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
}