File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ public async Task InitializeApplicationAsync(object activatedEventArgs)
70
70
if ( ppm . IsEmpty ( ) )
71
71
rootFrame . Navigate ( typeof ( MainPage ) , null , new SuppressNavigationTransitionInfo ( ) ) ;
72
72
else
73
- await InitializeFromCmdLineArgsAsync ( rootFrame , ppm ) ;
73
+ await InitializeFromCmdLineArgsAsync ( rootFrame , ppm , Environment . CurrentDirectory ) ;
74
74
}
75
75
else if ( rootFrame . Content is null || rootFrame . Content is SplashScreenPage || ! MainPageViewModel . AppInstances . Any ( ) )
76
76
{
@@ -131,7 +131,7 @@ public async Task InitializeApplicationAsync(object activatedEventArgs)
131
131
if ( ppm . IsEmpty ( ) )
132
132
rootFrame . Navigate ( typeof ( MainPage ) , null , new SuppressNavigationTransitionInfo ( ) ) ;
133
133
else
134
- await InitializeFromCmdLineArgsAsync ( rootFrame , ppm ) ;
134
+ await InitializeFromCmdLineArgsAsync ( rootFrame , ppm , Environment . CurrentDirectory ) ;
135
135
break ;
136
136
default :
137
137
rootFrame . Navigate ( typeof ( MainPage ) , null , new SuppressNavigationTransitionInfo ( ) ) ;
You can’t perform that action at this time.
0 commit comments