Fixed individual sample head not building under WinUI 2 / 3

This commit is contained in:
Arlo Godfrey 2022-04-13 13:53:16 -05:00
Родитель 1f405afdc8
Коммит 7ff516cb59
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,11 @@
using CommunityToolkit.Labs.Shared;
using System;
#if WINAPPSDK
using Microsoft.UI.Xaml;
#else
using Windows.UI.Xaml;
#endif
namespace CanvasLayout.Wasm
{
@ -10,7 +15,7 @@ namespace CanvasLayout.Wasm
static int Main(string[] args)
{
Windows.UI.Xaml.Application.Start(_ => _app = new App());
Application.Start(_ => _app = new App());
return 0;
}