Compartilhar via


Propriedade VCCLCompilerTool.AssemblerOutput

Obtém ou define o conteúdo do arquivo de saída de linguagem de assembly ". AssemblerOutput expõe a funcionalidade das opções de /FA, /Fa (listando arquivo) do compilador.

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

Sintaxe

'Declaração
Property AssemblerOutput As asmListingOption
asmListingOption AssemblerOutput { get; set; }
property asmListingOption AssemblerOutput {
    asmListingOption get ();
    void set (asmListingOption value);
}
abstract AssemblerOutput : asmListingOption with get, set
function get AssemblerOutput () : asmListingOption 
function set AssemblerOutput (value : asmListingOption)

Valor de propriedade

Tipo: Microsoft.VisualStudio.VCProjectEngine.asmListingOption
Uma enumeração de asmListingOption .

Comentários

Use a enumeração de asmListingOption para alterar o valor desta propriedade.

Exemplos

Consulte Como compilar um código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como criar e executar esse exemplo.

O exemplo a seguir altera a propriedade de AssemblerOutput no ambiente de desenvolvimento integrado (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.AssemblerOutput = asmListingOption.asmListingAsmSrc
    End Sub
End Module

Segurança do .NET Framework

Consulte também

Referência

VCCLCompilerTool Interface

Namespace Microsoft.VisualStudio.VCProjectEngine