mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
10 lines
239 B
C#
10 lines
239 B
C#
|
|
using Foundation;
|
|||
|
|
|
|||
|
|
namespace Microsoft.ML.OnnxRuntime.InferenceSample.Maui;
|
|||
|
|
|
|||
|
|
[Register("AppDelegate")]
|
|||
|
|
public class AppDelegate : MauiUIApplicationDelegate
|
|||
|
|
{
|
|||
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|||
|
|
}
|