You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/XamarinApp/XamarinApp/App.xaml.cs

31 lines
610 B

using Xamarin.Forms;
namespace XamarinApp
{
public partial class App : Application
{
public App()
{
InitializeComponent();
#if DEBUG
foreach (var res in this.GetType().Assembly.GetManifestResourceNames())
{
System.Diagnostics.Debug.WriteLine($"resource:{res} ");
}
#endif
MainPage = new MainPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}