private void LoadPropertySets() { if (_sectionLines != null) { SlnPropertySet curSet = null; for (int n = 0; n < _sectionLines.Count; n++) { var line = _sectionLines[n]; if (string.IsNullOrEmpty(line.Trim())) { continue; } var i = line.IndexOf('.'); if (i == -1) { throw new InvalidSolutionFormatException( _baseIndex + n, "InvalidPropertySetFormatString"); } var id = line.Substring(0, i); if (curSet == null || id != curSet.Id) { curSet = new SlnPropertySet(id); _nestedPropertySets.Add(curSet); } curSet.ReadLine(line.Substring(i + 1), _baseIndex + n); } _sectionLines = null; } }
public void Clear() { _properties = null; _nestedPropertySets = null; _sectionLines = null; }
public void SetContent(IEnumerable <KeyValuePair <string, string> > lines) { _sectionLines = new List <string>(lines.Select(p => p.Key + " = " + p.Value)); _properties = null; _nestedPropertySets = null; }
public void Generate(bool EnableRebuild) { var s = new SlnFile(); s.FullPath = Path.GetFullPath(Path.Combine(OutputDirectory, SolutionName + ".sln")); using (var sr = new StringReader(SlnTemplateText)) { s.Read(sr); } s.Projects.Clear(); s.ProjectConfigurationsSection.Clear(); SlnSection NestedProjects = null; foreach (var Section in s.Sections.Where(Section => Section.Id == "NestedProjects")) { Section.Clear(); NestedProjects = Section; } if (NestedProjects == null) { NestedProjects = new SlnSection { Id = "NestedProjects" }; s.Sections.Add(NestedProjects); } var Filters = new Dictionary <String, String>(StringComparer.OrdinalIgnoreCase); foreach (var Project in ProjectReferences) { var Dir = Project.VirtualDir.Replace('/', '\\'); if (!Filters.ContainsKey(Dir)) { var CurrentDir = Dir; while ((CurrentDir != "") && !Filters.ContainsKey(CurrentDir)) { var g = Guid.ParseExact(Hash.GetHashForPath(CurrentDir, 32), "N").ToString().ToUpper(); Filters.Add(CurrentDir, g); CurrentDir = Path.GetDirectoryName(CurrentDir); if (CurrentDir != "") { var gUpper = Guid.ParseExact(Hash.GetHashForPath(CurrentDir, 32), "N").ToString().ToUpper(); NestedProjects.Properties.SetValue("{" + g + "}", "{" + gUpper + "}"); } } } s.Projects.Add(new SlnProject { TypeGuid = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}", Name = Project.Name, FilePath = FileNameHandling.GetRelativePath(Project.FilePath, OutputDirectory), Id = "{" + Project.Id + "}" }); var conf = new SlnPropertySet("{" + Project.Id + "}"); foreach (var c in s.SolutionConfigurationsSection) { var Value = c.Value.Replace("|x86", "|Win32"); conf.SetValue(c.Key + ".ActiveCfg", Value); conf.SetValue(c.Key + ".Build.0", Value); } s.ProjectConfigurationsSection.Add(conf); NestedProjects.Properties.SetValue("{" + Project.Id + "}", "{" + Filters[Dir] + "}"); } foreach (var f in Filters) { s.Projects.Add(new SlnProject { TypeGuid = "{2150E333-8FDC-42A3-9474-1A3956D46DE8}", Name = Path.GetFileName(f.Key), FilePath = Path.GetFileName(f.Key), Id = "{" + f.Value + "}" }); } foreach (var Section in s.Sections.Where(Section => Section.Id == "ExtensibilityGlobals")) { Section.Properties.SetValue("SolutionGuid", "{" + SolutionId.ToUpper() + "}"); } String Text; using (var sw = new StringWriter()) { s.Write(sw); Text = sw.ToString(); } TextFile.WriteToFile(s.FullPath, Text, Encoding.UTF8, !EnableRebuild); }