Aracılığıyla paylaş


VCCLCompilerTool.EnableEnhancedInstructionSet Özellik

Alır veya ayarlar IA-32 sse ve SSE2 geliştirmeleri gibi gelişmiş yönerge kümeleri destekleyen işlemciler üzerinde bulunan yönergeleri kullanımı sağlayan bir değer. EnableEnhancedInstructionSetDerleyici 's iþlevselliði /ARCH seçeneği.

Ad alanı:  Microsoft.VisualStudio.VCProjectEngine
Derleme:  Microsoft.VisualStudio.VCProjectEngine (Microsoft.VisualStudio.VCProjectEngine.dll içinde)

Sözdizimi

'Bildirim
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)

Özellik Değeri

Tür: Microsoft.VisualStudio.VCProjectEngine.enhancedInstructionSetType
A enhancedInstructionSetType value.

Örnekler

Bkz: Nasıl yapılır: proje modeli genişletilebilirlik amacıyla örnek kodu derleyin derlemek ve bu örnek çalıştırma hakkında bilgi için.

Aşağıdaki örnek değerini listeler EnableEnhancedInstructionSet tümleşik geliştirme ortamını (IDE) özelliği:

' 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 Güvenliği

Ayrıca bkz.

Başvuru

VCCLCompilerTool Arabirim

Microsoft.VisualStudio.VCProjectEngine Ad Alanı