/// <summary>
 /// Get a list of all files that exist in the current project directory.
 /// </summary>
 /// <returns></returns>
 public static Dictionary <string, List <string> > GetProjectFiles(string projectFolder)
 {
     return(FileActions.GetFileDictionaryWithLocationsFromFolder(projectFolder));
 }