Como: Ativar ou desativar avisos do compilador (Visual Basic)
The Visual Basic compiler can detect potential problems in your code and issue warnings so that you can review them. By default, all compiler warnings are added to the Task List during compilation. You can change the behavior of the compiler so that it does not issue warnings, or so that it will treat warnings as compilation errors that must be fixed immediately.
Compiler warnings can be enabled or disabled in the Compile page of the Project Designer.
Observação |
---|
Enabling or disabling certain compiler warnings may also change the value of the Option Strict property. For more information, see Como: Definir opções do compilador (Visual Basic). |
To disable all compiler warnings
With a project selected in Solution Explorer, on the Project menu click Properties.
Click the Compile tab.
Select the Disable all warnings check box.
To disable a single compiler warning
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
In the Default Compiler Options table, set the Notification value for the warning to None.
To treat all compiler warnings as compilation errors
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
Select the Treat all warnings as errors check box.
Para tratar de um único aviso do compilador como um erro de compilação
Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.
Click the Compile tab.
In the Default Compiler Options table, set the Notification value for the warning to Error.
Consulte também
Tarefas
Como: Definir opções do compilador (Visual Basic)
Referência
Compilar a página, Designer de projeto (Visual Basic)
Compilação de página, Designer de projeto c (#)