Partager via


VCCLCompilerTool.ObjectFile, propriété

Obtient ou définit un nom de substituer le nom de fichier d'objet par défaut.ObjectFile expose les fonctions de l'option /Fo (Nom de fichier objet) du compilateur.

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

Syntaxe

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

Valeur de propriété

Type : System.String
Nom de substitution pour le nom de fichier objet par défaut.

Exemples

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

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

' 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 VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.ObjectFile = "$(IntDir)/MyFile"
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCCLCompilerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms