Reference::Remove Method ()

 

Gets the reference from the References object that contains it.

Namespace:   VSLangProj
Assembly:  VSLangProj (in VSLangProj.dll)

void Remove()

This example adds a reference and then removes it.

' Macro Editor
Imports VSLangProj
Public Sub TestReport()
   ' First project is a Visual Basic or C# project.
   Dim vsProject As VSProject = _
      CType(DTE.Solution.Projects.Item(1).Object, VSProject)

   ' Add an assembly and display its type, "Assembly".
   Dim newRef As Reference
   newRef = vsProject.References.Add("C:\SomeProject\bin\template.dll")
   newRef.Remove()
End Sub
Return to top
Show: