Compartilhar via


Propriedade VCCLCompilerTool.AssemblerOutput

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

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
Um asmListingOption enumeração.

Comentários

Use o asmListingOption enumeração para alterar o valor dessa propriedade.

Exemplos

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

O exemplo seguinte modifica a AssemblerOutput propriedade 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