/nostdlib (Visual Basic)

Causes the compiler not to automatically reference the standard libraries.

/nostdlib

Comentários

The /nostdlib option removes the automatic reference to the System.dll assembly and prevents the compiler from reading the Vbc.rsp file. The Vbc.rsp file—which is located in the same directory as the Vbc.exe file—references the commonly used .NET Framework assemblies and imports the System and Microsoft.VisualBasic namespaces.

ObservaçãoObservação

The Mscorlib.dll and Microsoft.VisualBasic.dll assemblies are always referenced.

ObservaçãoObservação

The /nostdlib option is not available from within the Visual Studio development environment; it is available only when compiling from the command line.

Exemplo

The following code compiles T2.vb without referencing the standard libraries. You must set the _MYTYPE conditional-compilation constant to the string "Empty" to remove the My object.

vbc /nostdlib /define:_MYTYPE=\"Empty\" T2.vb

Consulte também

Referência

/noconfig

Exemplos de Linhas de Comando de Compilação (Visual Basic)

Conceitos

Personalizando quais objetos estão disponíveis no meu (Visual Basic)

Outros recursos

Compilador do Visual Basic