Project.SetImportedProperty Method (String, String, String, Project)

Sets the value of a property in the specified imported project.

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.BuildEngine
Assembly:  Microsoft.Build.Engine (in Microsoft.Build.Engine.dll)

Syntax

'Declaration
Public Sub SetImportedProperty ( _
    propertyName As String, _
    propertyValue As String, _
    condition As String, _
    importProject As Project _
)
public void SetImportedProperty(
    string propertyName,
    string propertyValue,
    string condition,
    Project importProject
)
public:
void SetImportedProperty(
    String^ propertyName, 
    String^ propertyValue, 
    String^ condition, 
    Project^ importProject
)
member SetImportedProperty : 
        propertyName:string * 
        propertyValue:string * 
        condition:string * 
        importProject:Project -> unit
public function SetImportedProperty(
    propertyName : String, 
    propertyValue : String, 
    condition : String, 
    importProject : Project
)

Parameters

  • propertyName
    Type: System.String

    The name of the property to change.

  • propertyValue
    Type: System.String

    The value to assign the property.

  • condition
    Type: System.String

    The condition to use on the property. Corresponds to the Condition attribute of the Property element.

.NET Framework Security

See Also

Reference

Project Class

SetImportedProperty Overload

Microsoft.Build.BuildEngine Namespace