VCCLCompilerTool.InlineFunctionExpansion-Eigenschaft

Ruft ab oder legt die Ebene der Erweiterung für den Build Inlinefunktions fest.InlineFunctionExpansion macht die Funktionen der /Ob (Inlinefunktionserweiterung) Optionen des Compilers verfügbar.

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

Syntax

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

Eigenschaftswert

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

Beispiele

Weitere Informationen finden Sie unter Gewusst wie: Kompilieren von Beispielcode für die Erweiterbarkeit von Projektmodellen Informationen zum Ändern dieses Beispiel kompiliert und ausgeführt wird.

Im folgenden Beispiel wird die InlineFunctionExpansion-Eigenschaft in der integrierten Entwicklungsumgebung (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.InlineFunctionExpansion = inlineExpansionOption.expandAnySuitable
    End Sub
End Module

.NET Framework-Sicherheit

Siehe auch

Referenz

VCCLCompilerTool Schnittstelle

Microsoft.VisualStudio.VCProjectEngine-Namespace