Propriedade VCCLCompilerTool.RuntimeLibrary
Obtém ou define a biblioteca em tempo de execução para vincular. RuntimeLibrary expõe a funcionalidade das opções de /MD, /MT, /LD (usar biblioteca em tempo de execução) do compilador.
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 um código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como criar e executar esse exemplo.
O exemplo a seguir altera a propriedade de RuntimeLibrary 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
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiável.