Partilhar via


Propriedade VCAssemblyReference.RelativePath

Obtém ou define o caminho para a referência selecionada, relativo ao diretório do projeto.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)

Sintaxe

'Declaração
ReadOnly Property RelativePath As String
string RelativePath { get; }
property String^ RelativePath {
    String^ get ();
}
abstract RelativePath : string with get
function get RelativePath () : String

Valor de propriedade

Tipo: System.String
O caminho relativo para a referência selecionada.

Comentários

Consulte Como: compilar o código de exemplo para extensibilidade do Visual C++ código modelo para obter informações sobre como compilar e executar esse exemplo.

Exemplos

Este exemplo adiciona uma referência ao seu projeto e lista seu caminho relativo.

' 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

Segurança do .NET Framework

Consulte também

Referência

VCAssemblyReference Interface

Namespace Microsoft.VisualStudio.VCProjectEngine