mirror of
				https://github.com/9ParsonsB/Pulsar.git
				synced 2025-11-03 15:26:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			511 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using Avalonia;
 | 
						|
using Avalonia.ReactiveUI;
 | 
						|
 | 
						|
namespace Observatory
 | 
						|
{
 | 
						|
    class ObservatoryCore
 | 
						|
    {
 | 
						|
        [STAThread]
 | 
						|
        static void Main(string[] args)
 | 
						|
        {
 | 
						|
            BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
 | 
						|
        }
 | 
						|
 | 
						|
        public static AppBuilder BuildAvaloniaApp()
 | 
						|
        {
 | 
						|
            return AppBuilder.Configure<UI.MainApplication>()
 | 
						|
                .UsePlatformDetect()
 | 
						|
                .LogToTrace()
 | 
						|
                .UseReactiveUI();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |