/// <summary> /// Returns the collection of source files from the client /// </summary> /// <param name="clientProjectPath"></param> /// <returns></returns> public static List <string> ClientClassLibSourceFiles(string clientProjectPath) { return(MsBuildHelper.GetSourceFiles(clientProjectPath)); }
/// <summary> /// Returns the collection of source files from the server /// </summary> /// <param name="serverProjectPath"></param> /// <returns></returns> public static List <string> ServerClassLibSourceFiles(string serverProjectPath) { return(MsBuildHelper.GetSourceFiles(serverProjectPath)); }