Exemple #1
0
 public static Project Load(string filename)
 {
     filename = filename.ToFullPath();
     return(new Project(filename, UnoprojParser.Parse(filename)));
 }
Exemple #2
0
 public static UnoprojDocument Parse(string filename)
 {
     using (var p = new UnoprojParser(Log.Default, filename))
         return(p.ParseDocument());
 }