Share via


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

Creates a new project instance and initializes it from the given project file, using the given global properties, tools version, and the default 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 ( _
    projectFile As String, _
    globalProperties As IDictionary(Of String, String), _
    toolsVersion As String _
)
public ProjectInstance(
    string projectFile,
    IDictionary<string, string> globalProperties,
    string toolsVersion
)
public:
ProjectInstance(
    String^ projectFile, 
    IDictionary<String^, String^>^ globalProperties, 
    String^ toolsVersion
)
new : 
        projectFile:string * 
        globalProperties:IDictionary<string, string> * 
        toolsVersion:string -> ProjectInstance
public function ProjectInstance(
    projectFile : String, 
    globalProperties : IDictionary<String, String>, 
    toolsVersion : String
)

Parameters

  • globalProperties
    Type: IDictionary<String, String>

    The global properties to use.

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