mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
20 lines
395 B
C#
20 lines
395 B
C#
|
|
using Xamarin.Forms;
|
|||
|
|
|
|||
|
|
namespace Microsoft.ML.OnnxRuntime.InferenceSample.Forms
|
|||
|
|
{
|
|||
|
|
public partial class App : Application
|
|||
|
|
{
|
|||
|
|
public App()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
|
|||
|
|
MainPage = new MainPage();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void OnStart() {}
|
|||
|
|
|
|||
|
|
protected override void OnSleep() {}
|
|||
|
|
|
|||
|
|
protected override void OnResume() {}
|
|||
|
|
}
|
|||
|
|
}
|