ProjectGraphEntryPoint Constructors

Definition

Overloads

ProjectGraphEntryPoint(String)

Constructs an entry point with the given project file and no global properties.

ProjectGraphEntryPoint(String, IDictionary<String,String>)

Constructs an entry point with the given project file and global properties.

ProjectGraphEntryPoint(String)

Constructs an entry point with the given project file and no global properties.

public:
 ProjectGraphEntryPoint(System::String ^ projectFile);
public ProjectGraphEntryPoint (string projectFile);
new Microsoft.Build.Graph.ProjectGraphEntryPoint : string -> Microsoft.Build.Graph.ProjectGraphEntryPoint
Public Sub New (projectFile As String)

Parameters

projectFile
String

The project file to use for this entry point

Applies to

ProjectGraphEntryPoint(String, IDictionary<String,String>)

Constructs an entry point with the given project file and global properties.

public:
 ProjectGraphEntryPoint(System::String ^ projectFile, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ globalProperties);
public ProjectGraphEntryPoint (string projectFile, System.Collections.Generic.IDictionary<string,string> globalProperties);
new Microsoft.Build.Graph.ProjectGraphEntryPoint : string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Build.Graph.ProjectGraphEntryPoint
Public Sub New (projectFile As String, globalProperties As IDictionary(Of String, String))

Parameters

projectFile
String

The project file to use for this entry point

globalProperties
IDictionary<String,String>

The global properties to use for this entry point. May be null.

Applies to