Propriedade VCCLCompilerTool.RuntimeLibrary

Obtém ou define a biblioteca de tempo de execução para vinculação.RuntimeLibraryexpõe a funcionalidade do compilador / MD, /MT, /LD (biblioteca de tempo de execução de uso) opções.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)

Sintaxe

'Declaração
Property RuntimeLibrary As runtimeLibraryOption
runtimeLibraryOption RuntimeLibrary { get; set; }
property runtimeLibraryOption RuntimeLibrary {
    runtimeLibraryOption get ();
    void set (runtimeLibraryOption value);
}
abstract RuntimeLibrary : runtimeLibraryOption with get, set
function get RuntimeLibrary () : runtimeLibraryOption
function set RuntimeLibrary (value : runtimeLibraryOption)

Valor de propriedade

Tipo: Microsoft.VisualStudio.VCProjectEngine.runtimeLibraryOption
Um valor runtimeLibraryOption.

Exemplos

Consulte Como: compilar o código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como compilar e executar esse exemplo.

O exemplo seguinte modifica a RuntimeLibrary propriedade 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.RuntimeLibrary = runtimeLibraryOption.rtSingleThreadedDebug
    End Sub
End Module

Segurança do .NET Framework

Consulte também

Referência

VCCLCompilerTool Interface

Namespace Microsoft.VisualStudio.VCProjectEngine