Program.cs 569 B

1234567891011121314151617181920212223
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. using Avalonia;
  5. using Avalonia.Controls;
  6. using Avalonia.Logging.Serilog;
  7. using Serilog;
  8. namespace VirtualizationTest
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. AppBuilder.Configure<App>()
  15. .UsePlatformDetect()
  16. .UseReactiveUI()
  17. .LogToDebug()
  18. .Start<MainWindow>();
  19. }
  20. }
  21. }