private void processGeneratedFiles(string lhs, string rhs) { if (null == projectFiles[lhs]) projectFiles[lhs] = new projectFile(); if (rhs.ToLower() == "yes") projectFiles[lhs].isAutoGenerated = true; else projectFiles[lhs].isAutoGenerated = false; }
private void processOtherFiles(string lhs, string rhs) { if (null == projectFiles[lhs]) projectFiles[lhs] = new projectFile(); if (rhs.ToLower() == "yes") projectFiles[lhs].isOtherFile = true; else projectFiles[lhs].isOtherFile = false; }
private void processFileInfo(string lhs, string rhs) { if (null == projectFiles[lhs]) projectFiles[lhs] = new projectFile(); projectFiles[lhs].name = rhs; }