Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the collection of references that are consumable by designers in the active solution configuration.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
ReadOnly Property ReferencesConsumableByDesigners As Object
Get
Object ReferencesConsumableByDesigners { get; }
property Object^ ReferencesConsumableByDesigners {
Object^ get ();
}
abstract ReferencesConsumableByDesigners : Object
function get ReferencesConsumableByDesigners () : Object
Property Value
Type: System.Object
An object representing a collection of references.
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
' 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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.