Engine.GlobalProperties Property

Definition

Gets or sets a collection of the global properties for the project.

public:
 property Microsoft::Build::BuildEngine::BuildPropertyGroup ^ GlobalProperties { Microsoft::Build::BuildEngine::BuildPropertyGroup ^ get(); void set(Microsoft::Build::BuildEngine::BuildPropertyGroup ^ value); };
public Microsoft.Build.BuildEngine.BuildPropertyGroup GlobalProperties { get; set; }
public Microsoft.Build.BuildEngine.BuildPropertyGroup GlobalProperties { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.GlobalProperties : Microsoft.Build.BuildEngine.BuildPropertyGroup with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.GlobalProperties : Microsoft.Build.BuildEngine.BuildPropertyGroup with get, set
Public Property GlobalProperties As BuildPropertyGroup

Property Value

A BuildPropertyGroup that contains the global properties for the project.

Attributes

Remarks

Global properties are properties that are set by using the /property switch on the command line, or properties that are set by the integrated development environment (IDE) before a project is built. These global properties are applied to all projects that are built by using this Engine.

Applies to