Propriedade VCCLCompilerTool.AssemblerListingLocation
Obtém ou define o caminho relativo e/ou o nome para um arquivo de listagem de ASM. AssemblerListingLocation expõe a funcionalidade padrão de /Fa do compilador.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)
Sintaxe
'Declaração
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)
Valor de propriedade
Tipo: String
O caminho relativo e/ou o nome para uma listagem de ASM arquivo.
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 AssemblerListingLocation 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.AssemblerListingLocation = "MyFile"
End Sub
End Module
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.