public Section(string name, string sectionType, string step, IEnumerable <PropertyLine> propertyLines) { r_name = name; m_sectionType = sectionType; m_step = step; r_propertyLines = new PropertyLineHashList(propertyLines); }
public Project( SolutionFile container, string projectGuid, string projectTypeGuid, string projectName, string relativePath, string parentFolderGuid, IEnumerable <Section> projectSections, IEnumerable <PropertyLine> versionControlLines, IEnumerable <PropertyLine> projectConfigurationPlatformsLines) { r_container = container; r_projectGuid = projectGuid; m_projectTypeGuid = projectTypeGuid; m_projectName = projectName; m_relativePath = relativePath; m_parentFolderGuid = parentFolderGuid; r_projectSections = new SectionHashList(projectSections); r_versionControlLines = new PropertyLineHashList(versionControlLines); r_projectConfigurationPlatformsLines = new PropertyLineHashList(projectConfigurationPlatformsLines); }