Właściwość VCCLCompilerTool.EnableEnhancedInstructionSet —
Pobiera lub ustawia wartość, która umożliwia korzystanie z instrukcji zawartych na procesorach, które obsługują zestawów instrukcji rozszerzonych, takich jak ulepszenia SSE i SSE2 IA-32.EnableEnhancedInstructionSetudostępnia funkcję kompilatora /ARCH opcji.
Przestrzeń nazw: Microsoft.VisualStudio.VCProjectEngine
Zestaw: Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)
Składnia
'Deklaracja
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)
Wartość właściwości
Typ: Microsoft.VisualStudio.VCProjectEngine.enhancedInstructionSetType
A enhancedInstructionSetType value.
Przykłady
Zobacz Porady: kompilowanie przykładowego kodu dla rozszerzalności modelu projektów informacje na temat skompilować i uruchomić ten przykład.
Poniższy przykład wyświetla wartość EnableEnhancedInstructionSet właściwość w zintegrowane środowisko programistyczne (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")
MsgBox("Current EnableEnhancedInstructionSet value: " & _
tool.EnableEnhancedInstructionSet.ToString)
End Sub
End Module
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Używanie bibliotek pochodzących z częściowo zaufanego kodu.