@@ -15,7 +15,7 @@ public static class GetProjects
15
15
// convert target platform name into valid buildtarget platform name, NOTE this depends on unity version, now only 2019 and later are supported
16
16
public static Dictionary < string , string > remapPlatformNames = new Dictionary < string , string > { { "StandaloneWindows64" , "Win64" } , { "StandaloneWindows" , "Win" } , { "Android" , "Android" } , { "WebGL" , "WebGL" } } ;
17
17
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 )
19
19
{
20
20
List < Project > projectsFound = new List < Project > ( ) ;
21
21
@@ -53,7 +53,7 @@ public static List<Project> Scan(bool getGitBranch = false, bool getPlasticBranc
53
53
projectPath = ( string ) key . GetValue ( valueName ) ;
54
54
}
55
55
56
- var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursivly , showSRP ) ;
56
+ var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursively , showSRP ) ;
57
57
//Console.WriteLine(projectPath+" "+p.TargetPlatform);
58
58
59
59
// if want to hide project and folder path for screenshot
@@ -94,7 +94,7 @@ public static List<Project> Scan(bool getGitBranch = false, bool getPlasticBranc
94
94
// if not found from registry, add to recent projects list
95
95
if ( found == false )
96
96
{
97
- var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursivly , showSRP ) ;
97
+ var p = GetProjectInfo ( projectPath , getGitBranch , getPlasticBranch , getArguments , showMissingFolders , showTargetPlatform , searchGitbranchRecursively , showSRP ) ;
98
98
if ( p != null ) projectsFound . Add ( p ) ;
99
99
}
100
100
}
0 commit comments