AutomationDrivers.Core.Configuration.ProjectPath.GetWebProjectFolderPath C# (CSharp) 메소드

GetWebProjectFolderPath() 공개 정적인 메소드

public static GetWebProjectFolderPath ( string webProjectFolderName ) : string
webProjectFolderName string
리턴 string
        public static string GetWebProjectFolderPath(string webProjectFolderName)
        {
            string solutionFolder = GetSolutionFolderPath();
            string projectPath = FindSubFolderPath(solutionFolder, webProjectFolderName);
            return projectPath;
        }