Program.cs 302 B

123456789101112131415
  1. using Avalonia;
  2. namespace Sandbox
  3. {
  4. public class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. AppBuilder.Configure<App>()
  9. .UsePlatformDetect()
  10. .LogToTrace()
  11. .StartWithClassicDesktopLifetime(args);
  12. }
  13. }
  14. }