@@ -292,7 +292,7 @@ public static async Task OpenSelectedItemsAsync(IShellPage associatedInstance, b
292292 selectedItems . Count > 1 &&
293293 selectedItems . All ( x => x . PrimaryItemAttribute == StorageItemTypes . File && ! x . IsExecutable && ! x . IsShortcut ) )
294294 {
295- opened = await Win32Helpers . InvokeWin32ComponentAsync ( string . Join ( '|' , selectedItems . Select ( x => x . ItemPath ) ) , associatedInstance ) ;
295+ opened = await Win32Helper . InvokeWin32ComponentAsync ( string . Join ( '|' , selectedItems . Select ( x => x . ItemPath ) ) , associatedInstance ) ;
296296 }
297297
298298 if ( opened )
@@ -319,7 +319,7 @@ public static async Task OpenItemsWithExecutableAsync(IShellPage associatedInsta
319319 return ;
320320
321321 var arguments = string . Join ( " " , items . Select ( item => $ "\" { item . Path } \" ") ) ;
322- await Win32Helpers . InvokeWin32ComponentAsync ( executablePath , associatedInstance , arguments ) ;
322+ await Win32Helper . InvokeWin32ComponentAsync ( executablePath , associatedInstance , arguments ) ;
323323 }
324324
325325 /// <summary>
@@ -469,7 +469,7 @@ private static async Task<FilesystemResult> OpenDirectory(string path, IShellPag
469469 {
470470 if ( string . IsNullOrEmpty ( shortcutInfo . TargetPath ) )
471471 {
472- await Win32Helpers . InvokeWin32ComponentAsync ( path , associatedInstance ) ;
472+ await Win32Helper . InvokeWin32ComponentAsync ( path , associatedInstance ) ;
473473 opened = ( FilesystemResult ) true ;
474474 }
475475 else
@@ -498,7 +498,7 @@ private static async Task<FilesystemResult> OpenDirectory(string path, IShellPag
498498 if ( opened )
499499 await OpenPath ( forceOpenInNewTab , UserSettingsService . FoldersSettingsService . OpenFoldersInNewTab , path , associatedInstance , selectItems ) ;
500500 else
501- await Win32Helpers . InvokeWin32ComponentAsync ( path , associatedInstance ) ;
501+ await Win32Helper . InvokeWin32ComponentAsync ( path , associatedInstance ) ;
502502 }
503503 return opened ;
504504 }
@@ -513,7 +513,7 @@ private static async Task<FilesystemResult> OpenFile(string path, IShellPage ass
513513 {
514514 if ( string . IsNullOrEmpty ( shortcutInfo . TargetPath ) )
515515 {
516- await Win32Helpers . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
516+ await Win32Helper . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
517517 }
518518 else
519519 {
@@ -524,13 +524,13 @@ private static async Task<FilesystemResult> OpenFile(string path, IShellPage ass
524524 if ( childFile ? . Item is SystemStorageFile )
525525 App . RecentItemsManager . AddToRecentItems ( childFile . Path ) ;
526526 }
527- await Win32Helpers . InvokeWin32ComponentAsync ( shortcutInfo . TargetPath , associatedInstance , $ "{ args } { shortcutInfo . Arguments } ", shortcutInfo . RunAsAdmin , shortcutInfo . WorkingDirectory ) ;
527+ await Win32Helper . InvokeWin32ComponentAsync ( shortcutInfo . TargetPath , associatedInstance , $ "{ args } { shortcutInfo . Arguments } ", shortcutInfo . RunAsAdmin , shortcutInfo . WorkingDirectory ) ;
528528 }
529529 opened = ( FilesystemResult ) true ;
530530 }
531531 else if ( isHiddenItem )
532532 {
533- await Win32Helpers . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
533+ await Win32Helper . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
534534 }
535535 else
536536 {
@@ -630,7 +630,7 @@ private static async Task<FilesystemResult> OpenFile(string path, IShellPage ass
630630 }
631631
632632 if ( ! launchSuccess )
633- await Win32Helpers . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
633+ await Win32Helper . InvokeWin32ComponentAsync ( path , associatedInstance , args ) ;
634634 }
635635 } ) ;
636636 }
0 commit comments