Partager via


VCLinkerTool.TypeLibraryFile, propriété

Obtient ou définit une valeur spécifiant le nom du fichier bibliothèque de types.

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

Syntaxe

'Déclaration
Property TypeLibraryFile As String
string TypeLibraryFile { get; set; }
property String^ TypeLibraryFile {
    String^ get ();
    void set (String^ value);
}
abstract TypeLibraryFile : string with get, set
function get TypeLibraryFile () : String 
function set TypeLibraryFile (value : String)

Valeur de propriété

Type : String
Chaîne représentant le nom du fichier bibliothèque de types.

Notes

TypeLibraryFile expose les fonctions de l'option /TLBOUT (Nommer le fichier .TLB) de l'éditeur de liens.

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur la compilation et l'exécution de cet exemple.

Exemples

L'exemple suivant modifie la propriété d'TypeLibraryFile dans l'environnement de développement intégré (IDE) :

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
  Sub Test()
    Dim prj As VCProject
    Dim cfgs, tools As IVCCollection
    Dim cfg As VCConfiguration
    Dim tool As VCLinkerTool
    prj = DTE.Solution.Projects.Item(1).Object
    cfgs = prj.Configurations
    cfg = cfgs.Item(1)
    tool = cfg.Tools("VCLinkerTool")
    tool.TypeLibraryFile = "c:\a.IDL"
  End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCLinkerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms