Freigeben über


VCCLCompilerTool.EnableEnhancedInstructionSet-Eigenschaft

Ruft einen Wert ab, der die Verwendung von Anweisungen in Prozessoren aktiviert, die erweiterte Anweisungssets, z. B. die SSE- und SSE2-Erweiterung der IA-32-Architektur, unterstützen, oder legt diesen fest. EnableEnhancedInstructionSet macht die Funktionalität der Compileroption /ARCH verfügbar.

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

Syntax

'Declaration
Property EnableEnhancedInstructionSet As enhancedInstructionSetType
enhancedInstructionSetType EnableEnhancedInstructionSet { get; set; }
property enhancedInstructionSetType EnableEnhancedInstructionSet {
    enhancedInstructionSetType get ();
    void set (enhancedInstructionSetType value);
}
abstract EnableEnhancedInstructionSet : enhancedInstructionSetType with get, set
function get EnableEnhancedInstructionSet () : enhancedInstructionSetType 
function set EnableEnhancedInstructionSet (value : enhancedInstructionSetType)

Eigenschaftswert

Typ: Microsoft.VisualStudio.VCProjectEngine.enhancedInstructionSetType
Ein enhancedInstructionSetType-Wert.

Beispiele

Siehe Gewusst wie: Kompilieren von Beispielcode für die Erweiterbarkeit von Projektmodellen zu Informationen darüber, wie dieses Beispiel kompiliert und ausgeführt wird.

Im folgenden Beispiel wird der Wert der Eigenschaft EnableEnhancedInstructionSet in der integrierten Entwicklungsumgebung (IDE) auf:

' 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")
        MsgBox("Current EnableEnhancedInstructionSet value: " & _
          tool.EnableEnhancedInstructionSet.ToString)
    End Sub
End Module

.NET Framework-Sicherheit

Siehe auch

Referenz

VCCLCompilerTool Schnittstelle

Microsoft.VisualStudio.VCProjectEngine-Namespace