Freigeben über


AssignProjectConfiguration.UnassignedProjects Property

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets or sets the list of project reference items that could not be resolved using the pre-resolved list of outputs.

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

Syntax

'Declaration
<OutputAttribute> _
Public Property UnassignedProjects As ITaskItem()
[OutputAttribute]
public ITaskItem[] UnassignedProjects { get; set; }
[OutputAttribute]
public:
property array<ITaskItem^>^ UnassignedProjects {
    array<ITaskItem^>^ get ();
    void set (array<ITaskItem^>^ value);
}
[<OutputAttribute>]
member UnassignedProjects : ITaskItem[] with get, set
function get UnassignedProjects () : ITaskItem[]
function set UnassignedProjects (value : ITaskItem[])

Property Value

Type: array<Microsoft.Build.Framework.ITaskItem[]
The list of project reference items that could not be resolved using the pre-resolved list of outputs.

Remarks

Since Visual Studio only pre-resolves non-MSBuild projects, this means that project references in this list are in the MSBuild format.

.NET Framework Security

See Also

Reference

AssignProjectConfiguration Class

Microsoft.Build.Tasks Namespace