onnxruntime/csharp/sample/InferenceSample/Microsoft.ML.OnnxRuntime.InferenceSample.Forms/App.xaml.cs
Brian Martin 6c236fd939 Merged PR 6622174: merge latest onnxruntime into dmldev
there was a merge conflict in onnxruntime/core/providers/dml/OperatorAuthorHelper/Common.h that required manual merging.

Related work items: #36867798
2021-10-30 19:59:33 +00:00

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() {}
}
}