Beispiel #1
0
 public ProjectGraph(ProjectGraphEntryPoint entryPoint, ProjectCollection projectCollection)
     : this(entryPoint.AsEnumerable(), projectCollection, null)
 {
 }
Beispiel #2
0
 public ProjectGraph(ProjectGraphEntryPoint entryPoint)
     : this(entryPoint.AsEnumerable(), ProjectCollection.GlobalProjectCollection, null)
 {
 }
Beispiel #3
0
 public ProjectGraph(IEnumerable <string> entryProjectFiles, ProjectCollection projectCollection)
     : this(ProjectGraphEntryPoint.CreateEnumerable(entryProjectFiles), projectCollection, null)
 {
 }
Beispiel #4
0
 public ProjectGraph(IEnumerable <string> entryProjectFiles, IDictionary <string, string> globalProperties, ProjectCollection projectCollection)
     : this(ProjectGraphEntryPoint.CreateEnumerable(entryProjectFiles, globalProperties), projectCollection, null)
 {
 }
 /// <summary>
 /// Constructs a GraphBuildRequestData for build requests based on a project graph entry points.
 /// </summary>
 /// <param name="projectGraphEntryPoint">The entry point to use in the build.</param>
 /// <param name="targetsToBuild">The targets to build.</param>
 /// <param name="hostServices">The host services to use, if any.  May be null.</param>
 public GraphBuildRequestData(ProjectGraphEntryPoint projectGraphEntryPoint, ICollection <string> targetsToBuild, HostServices hostServices)
     : this(projectGraphEntryPoint.AsEnumerable(), targetsToBuild, hostServices, BuildRequestDataFlags.None)
 {
 }