예제 #1
0
파일: Solution.cs 프로젝트: glepag1/stride
 public static Solution FromStream(string solutionFullPath, [NotNull] Stream stream)
 {
     using (var reader = new SolutionReader(solutionFullPath, stream))
     {
         var solution = reader.ReadSolutionFile();
         solution.FullPath = solutionFullPath;
         return(solution);
     }
 }
예제 #2
0
파일: Solution.cs 프로젝트: glepag1/stride
 public static Solution FromFile(string solutionFullPath)
 {
     using (var reader = new SolutionReader(solutionFullPath))
     {
         var solution = reader.ReadSolutionFile();
         solution.FullPath = solutionFullPath;
         return(solution);
     }
 }