VCProject.AddAssemblyReference 方法
向所选项目添加程序集 (.NET) 引用。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
Function AddAssemblyReference ( _
Path As String _
) As Object
Object AddAssemblyReference(
string Path
)
Object^ AddAssemblyReference(
[InAttribute] String^ Path
)
abstract AddAssemblyReference :
Path:string -> Object
function AddAssemblyReference(
Path : String
) : Object
参数
- Path
类型:System.String
一个表示要添加程序集的路径的字符串。
返回值
类型:System.Object
程序集的路径。
备注
AddAssemblyReference 调用 Visual Studio的 VSCore 服务标识要添加的 MinFrameworkVersion 引用。 如果调用 AddAssemblyReference 在 VSCore 服务不可用Visual Studio 外部,则 MinFrameworkVersion 设置为 eFrameworkVersionUnknown。
示例
有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码 。
如果可以添加一个 .NET 程序集引用根据路径的项目给程序集,。
' 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 prj As VCProject
Dim vcar As VCAssemblyReference
Dim refcfg As VCReferenceConfiguration
prj = DTE.Solution.Projects.Item(1).Object
If prj.CanAddAssemblyReference("C:\Program Files\ _
Microsoft Visual Studio 8\Common7\IDE\ _
PublicAssemblies\envdte.dll") Then
vcar = prj.AddAssemblyReference("C:\Program Files\ _
Microsoft Visual Studio 8\Common7\IDE\ _
PublicAssemblies\envdte.dll")
End If
refcfg = vcar.ReferenceConfigurations.Item(1)
MsgBox("Consumable? " & refcfg.ConsumableByDesigner)
End Sub
End Module
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。