File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ public static class Program
55 [ STAThread ]
66 public static void Main ( string [ ] args )
77 {
8- Directory . SetCurrentDirectory (
9- Path . GetDirectoryName ( AppContext . BaseDirectory ) ?? String . Empty ) ;
8+ Directory . SetCurrentDirectory ( Path . GetDirectoryName ( AppContext . BaseDirectory ) ?? String . Empty ) ;
109
11- BuildAvaloniaApp ( ) . StartWithClassicDesktopLifetime ( args ) ;
10+ BuildAvaloniaApp ( )
11+ . StartWithClassicDesktopLifetime ( args ) ;
1212 }
1313
1414 public static AppBuilder BuildAvaloniaApp ( ) =>
Original file line number Diff line number Diff line change @@ -31,8 +31,7 @@ public static int Main(string[] args) =>
3131
3232 private static ExitCode Run ( string [ ] args )
3333 {
34- Directory . SetCurrentDirectory (
35- Path . GetDirectoryName ( AppContext . BaseDirectory ) ?? String . Empty ) ;
34+ Directory . SetCurrentDirectory ( Path . GetDirectoryName ( AppContext . BaseDirectory ) ?? String . Empty ) ;
3635
3736 using var host = Host . CreateDefaultBuilder ( args )
3837 . UseContentRoot ( GetConfigDirectory ( ) )
You can’t perform that action at this time.
0 commit comments