switched to new way
This commit is contained in:
parent
f22d182c8f
commit
4a65c8e17b
96 changed files with 4991 additions and 10025 deletions
19
src/Poe2Trade.Ui/Program.cs
Normal file
19
src/Poe2Trade.Ui/Program.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Avalonia;
|
||||
using Poe2Trade.Core;
|
||||
|
||||
namespace Poe2Trade.Ui;
|
||||
|
||||
class Program
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Logging.Setup();
|
||||
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
||||
}
|
||||
|
||||
public static AppBuilder BuildAvaloniaApp()
|
||||
=> AppBuilder.Configure<App>()
|
||||
.UsePlatformDetect()
|
||||
.LogToTrace();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue