Reference.Remove メソッド
参照を含む References オブジェクトから参照を取得します。
名前空間: VSLangProj
アセンブリ: VSLangProj (vslangproj.dll 内)
構文
'宣言
'使用
使用例
参照を追加し、削除する例を次に示します。
' 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