VCProject.ReferencesConsumableByDesigners Property

Definition

Gets the collection of references that are consumable by designers in the active solution configuration.

C++/CX
public:
 property Platform::Object ^ ReferencesConsumableByDesigners { Platform::Object ^ get(); };

Property Value

An object representing a collection of references.

Attributes

Examples

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

VB
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a   
' Visual C++ project loaded before running this example.  
Imports EnvDTE  
Imports Microsoft.VisualStudio.VCProjectEngine  

Public Module Module1  
    Sub Test()  
        Dim sln As Solution  
        Dim prj As VCProject  
        prj = DTE.Solution.Item(1).Object  
        MsgBox("Consumable refs: " & _  
          prj.ReferencesConsumableByDesigners.ToString)  
    End Sub  
End Module  

Applies to

Product Versions
Visual Studio SDK 2015, 2017, 2019, 2022