Share via


ProjectInstance Constructor (ProjectRootElement, IDictionary<String, String>, String, String, ProjectCollection)

Creates a new project instance and initializes it from the given project root, using the given global properties, tools version, and project collection

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:  Microsoft.Build.Execution
Assembly:  Microsoft.Build (in Microsoft.Build.dll)

Syntax

'Declaration
Public Sub New ( _
    xml As ProjectRootElement, _
    globalProperties As IDictionary(Of String, String), _
    toolsVersion As String, _
    subToolsetVersion As String, _
    projectCollection As ProjectCollection _
)
public ProjectInstance(
    ProjectRootElement xml,
    IDictionary<string, string> globalProperties,
    string toolsVersion,
    string subToolsetVersion,
    ProjectCollection projectCollection
)
public:
ProjectInstance(
    ProjectRootElement^ xml, 
    IDictionary<String^, String^>^ globalProperties, 
    String^ toolsVersion, 
    String^ subToolsetVersion, 
    ProjectCollection^ projectCollection
)
new : 
        xml:ProjectRootElement * 
        globalProperties:IDictionary<string, string> * 
        toolsVersion:string * 
        subToolsetVersion:string * 
        projectCollection:ProjectCollection -> ProjectInstance
public function ProjectInstance(
    xml : ProjectRootElement, 
    globalProperties : IDictionary<String, String>, 
    toolsVersion : String, 
    subToolsetVersion : String, 
    projectCollection : ProjectCollection
)

Parameters

  • globalProperties
    Type: IDictionary<String, String>

    The global properties to use. May be null.

  • toolsVersion
    Type: System.String

    The tools version. May be null.

  • subToolsetVersion
    Type: System.String

    The sub toolset version. May be null.

Remarks

No intermediate Project object is created. This is useful if a project is going to be built, but not displayed or edited.

.NET Framework Security

See Also

Reference

ProjectInstance Class

ProjectInstance Overload

Microsoft.Build.Execution Namespace