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.StringThe name of the property to change.
propertyValue
Type: System.StringThe value to assign the property.
condition
Type: System.StringThe condition to use on the property. Corresponds to the Condition attribute of the Property element.
importProject
Type: Microsoft.Build.BuildEngine.ProjectThe Project that contains the specified property.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.