Partager via


VCAssemblyReference.RelativePath, propriété

Obtient ou définit le chemin de la référence sélectionnée par rapport au répertoire de projet.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
ReadOnly Property RelativePath As String
string RelativePath { get; }
property String^ RelativePath {
    String^ get ();
}
abstract RelativePath : string with get
function get RelativePath () : String

Valeur de propriété

Type : String
Chemin d'accès relatif à la référence sélectionnée.

Notes

Pour plus d'informations sur la compilation et l'exécution de cet exemple, consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de code Visual C++.

Exemples

Cet exemple ajoute une référence dans votre projet puis affiche le chemin d'accès relatif.

' 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

Sécurité .NET Framework

Voir aussi

Référence

VCAssemblyReference Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms