Compartilhar via


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çãoObservaçã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

  1. With a project selected in Solution Explorer, on the Project menu click Properties.

  2. Click the Compile tab.

  3. Select the Disable all warnings check box.

To disable a single compiler warning

  1. Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.

  2. Click the Compile tab.

  3. In the Default Compiler Options table, set the Notification value for the warning to None.

To treat all compiler warnings as compilation errors

  1. Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.

  2. Click the Compile tab.

  3. Select the Treat all warnings as errors check box.

Para tratar de um único aviso do compilador como um erro de compilação

  1. Com um projeto selecionado no Solution Explorerdiante do projeto menu, clique em Propriedades.

  2. Click the Compile tab.

  3. 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 (#)

Outros recursos

Gerenciando as Propriedades de Compilação