mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-20 21:40:57 +00:00
there was a merge conflict in onnxruntime/core/providers/dml/OperatorAuthorHelper/Common.h that required manual merging. Related work items: #36867798
20 lines
No EOL
395 B
C#
20 lines
No EOL
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() {}
|
|
}
|
|
} |