VCAssemblyReference.RelativePath 属性
获取或设置路径所选的引用,相对于项目目录。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
ReadOnly Property RelativePath As String
string RelativePath { get; }
property String^ RelativePath {
String^ get ();
}
abstract RelativePath : string with get
function get RelativePath () : String
属性值
类型:System.String
选定的相对路径引用。
备注
有关如何编译和运行此示例的信息,请参见如何:编译 Visual C++ 代码模型扩展性的示例代码。
示例
此示例添加对该项目并列出其相对路径。
' 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
prj = DTE.Solution.Projects.Item(1).Object
If prj.CanAddAssemblyReference("d:\winnt\microsoft.net _
\framework\v1.1.4322\envdte.dll") Then
vcar = prj.AddAssemblyReference("d:\winnt\microsoft.net _
\framework\v1.1.4322\envdte.dll")
End If
MsgBox("Assembly relative path: " & vcar.RelativePath.ToString)
End Sub
End Module
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。