Example #1
0
 public CSharpProject(string location)
 {
     this.location = location;
     xmlDocument = new XmlDocument();
     xmlDocument.Load(location);
     projectName = new ProjectName(new FileInfo(location).Name.Replace(".csproj", string.Empty));
 }
Example #2
0
 public NullProject(string name)
 {
     projectName = new ProjectName(name);
 }