VCCLCompilerTool.RuntimeLibrary (Propiedad)
obtiene o establece la biblioteca en tiempo de ejecución para vincular.RuntimeLibrary expone la funcionalidad de las opciones de /MD, /MT, /LD (Utilizar la biblioteca en tiempo de ejecución) del compilador.
Espacio de nombres: Microsoft.VisualStudio.VCProjectEngine
Ensamblado: Microsoft.VisualStudio.VCProjectEngine (en Microsoft.VisualStudio.VCProjectEngine.dll)
Sintaxis
'Declaración
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 propiedad
Tipo: Microsoft.VisualStudio.VCProjectEngine.runtimeLibraryOption
Valor runtimeLibraryOption.
Ejemplos
Vea Cómo: Compilar el código de ejemplo de extensibilidad del modelo de proyecto para obtener información sobre cómo compilar y ejecutar este ejemplo.
El ejemplo siguiente se modifica la propiedad de RuntimeLibrary en el entorno de desarrollo (IDE) integrado:
' 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
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.