BuildReportTool.Util.GetProjectName C# (CSharp) Method

GetProjectName() public static method

public static GetProjectName ( string projectAssetsFolderPath ) : string
projectAssetsFolderPath string
return string
	public static string GetProjectName(string projectAssetsFolderPath)
	{
		var dp = projectAssetsFolderPath;
		string[] s = dp.Split("/"[0]);
		return s[s.Length - 2];
	}