Exemple #1
0
 /// <summary>
 /// Creates a new project with the specified name and parent solution
 /// </summary>
 /// <param name="name">the name of the project</param>
 /// <param name="solution">the solution that contains the project</param>
 public Project(string name, Solution solution)
 {
     this.name     = name;
     this.solution = solution;
 }
Exemple #2
0
 internal void SetSolution(Solution solution)
 {
     this.solution = solution;
 }