BuildReportTool.Util.GetProjectTempStagingArea C# (CSharp) Method

GetProjectTempStagingArea() static private method

static private GetProjectTempStagingArea ( string projectDataPath ) : string
projectDataPath string
return string
	static string GetProjectTempStagingArea(string projectDataPath)
	{
		string tempFolder = projectDataPath;
		const string assets = "Assets";
		tempFolder = tempFolder.Substring(0, tempFolder.Length - assets.Length);
		tempFolder += "Temp/StagingArea";
		return tempFolder;
	}