Como: Definir constantes de compilação (Visual Basic)
Conditional compilation constants determine whether tracing and debugging statements should be compiled into the assembly or not.
DEBUG, TRACE and custom constants can be set in the Advanced Compiler Settings dialog box, accessible from the Compile page of the Project Designer.
Observação |
---|
Additional compilation constants can be specified programmatically. For more information, see Compilação condicional no Visual Basic. |
To set a DEBUG constant
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
Click the Advanced Compile Options button to open the Advanced Compiler Settings dialog box.
Select the Define DEBUG constant check box, and then click OK.
To set a TRACE constant
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
Click the Advanced Compile Options button to open the Advanced Compiler Settings dialog box.
Select the Define TRACE constant check box, and then click OK.
To set a custom constant
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
Click the Advanced Compile Options button to open the Advanced Compiler Settings dialog box.
Select the Custom Constants field and enter your constants using the form Name1="Value", and then click OK. Multiple constants should be separated with commas.
Consulte também
Referência
Avançado da caixa de diálogo Configurações do compilador (Visual Basic)
Compilação de página, Designer de projeto c (#)