Partager via


VCCLCompilerTool.AssemblerListingLocation, propriété

Obtient ou définit le chemin d'accès relatif et/ou le nom pour un fichier listing ASM. AssemblerListingLocation expose les fonctionnalités de l'option /Fa du compilateur.

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

Syntaxe

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

Valeur de propriété

Type : String
Chemin d'accès relatif et/ou nom pour un fichier listing ASM.

Exemples

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

L'exemple suivant modifie la propriété d'AssemblerListingLocation 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 VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.AssemblerListingLocation = "MyFile"
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCCLCompilerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms