ResolveNonMSBuildProjectOutput.UnresolvedProjectReferences Property

Definition

The list of project reference items that could not be resolved using the pre-resolved list of outputs. Since VS only pre-resolves non-MSBuild projects, this means that project references in this list are in the MSBuild format.

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

public:
 property cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ UnresolvedProjectReferences { cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ get(); void set(cli::array <Microsoft::Build::Framework::ITaskItem ^> ^ value); };
[Microsoft.Build.Framework.Output]
public Microsoft.Build.Framework.ITaskItem[] UnresolvedProjectReferences { get; set; }
[Microsoft.Build.Framework.Output]
public Microsoft.Build.Framework.ITaskItem[] UnresolvedProjectReferences { [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; }
[<Microsoft.Build.Framework.Output>]
member this.UnresolvedProjectReferences : Microsoft.Build.Framework.ITaskItem[] with get, set
[<Microsoft.Build.Framework.Output>]
[<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.UnresolvedProjectReferences : Microsoft.Build.Framework.ITaskItem[] with get, set
Public Property UnresolvedProjectReferences As ITaskItem()

Property Value

Project reference items that are in the MSBuild format.

Attributes

Remarks

Since Visual Studio only pre-resolves non-MSBuild projects, the project reference items that could not be resolved using the pre-resolved list of outputs are in the MSBuild format.

Applies to