@@ -15,7 +15,7 @@ public static class GetProjects
1515 // convert target platform name into valid buildtarget platform name, NOTE this depends on unity version, now only 2019 and later are supported
1616 public static Dictionary < string , string > remapPlatformNames = new Dictionary < string , string > { { "StandaloneWindows64" , "Win64" } , { "StandaloneWindows" , "Win" } , { "Android" , "Android" } , { "WebGL" , "WebGL" } } ;
1717
18- public static List < Project > Scan ( bool getGitBranch = false , bool getPlasticBranch = false , bool getArguments = false , bool showMissingFolders = false , bool showTargetPlatform = false , StringCollection AllProjectPaths = null , bool searchGitbranchRecursivly = false , bool showSRP = false )
18+ public static List < Project > Scan ( bool getGitBranch = false , bool getPlasticBranch = false , bool getArguments = false , bool showMissingFolders = false , bool showTargetPlatform = false , StringCollection AllProjectPaths = null , bool searchGitbranchRecursively = false , bool showSRP = false )
1919 {
2020 List < Project > projectsFound = new List < Project > ( ) ;
2121
@@ -53,7 +53,7 @@ public static List<Project> Scan(bool getGitBranch = false, bool getPlasticBranc
5353 projectPath = ( string ) key . GetValue ( valueName ) ;
5454 }
5555
56- var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursivly , showSRP ) ;
56+ var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursively , showSRP ) ;
5757 //Console.WriteLine(projectPath+" "+p.TargetPlatform);
5858
5959 // if want to hide project and folder path for screenshot
@@ -94,7 +94,7 @@ public static List<Project> Scan(bool getGitBranch = false, bool getPlasticBranc
9494 // if not found from registry, add to recent projects list
9595 if ( found == false )
9696 {
97- var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursivly , showSRP ) ;
97+ var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursively , showSRP ) ;
9898 if ( p != null ) projectsFound . Add ( p ) ;
9999 }
100100 }
0 commit comments