Closed Property

MSBuild

Gets or sets the flag to indicate whether to augment the list of input assemblies to its "transitive closure".


Namespace: MSBuild.Community.Tasks
Assembly: MSBuild.Community.Tasks (in MSBuild.Community.Tasks.dll)

Syntax

Visual Basic (Declaration)
Public Property Closed As Boolean
C#
public bool Closed { get; set; }
C++
public property bool Closed sealed  {
    bool get();
    void set(bool value);
}
J#
/** property */
public bool get_Closed();

/** property */
public void set_Closed(bool value);
JScript
public function get Closed() : bool

public function set Closed(value : bool);

Remarks

An assembly is considered part of the transitive closure if it is referenced, either directly or indirectly, from one of the originally specified input assemblies and it has an external reference to one of the input assemblies, or one of the assemblies that has such a reference.

Corresponds to command line option "/closed".

The default value is false.

See Also

Syntax based on .NET Framework version 2.0.
Documentation version 1.0.0.0.