Udostępnij za pośrednictwem


Właściwość VCCLCompilerTool.EnableFunctionLevelLinking —

Zwraca lub ustawia wartość, która umożliwia łączenie poziomu funkcji.EnableFunctionLevelLinkingOpisuje funkcje kompilatora /Gy (Włączanie funkcji na poziomie łączenie) opcji.

Przestrzeń nazw:  Microsoft.VisualStudio.VCProjectEngine
Zestaw:  Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)

Składnia

'Deklaracja
Property EnableFunctionLevelLinking As Boolean
bool EnableFunctionLevelLinking { get; set; }
property bool EnableFunctionLevelLinking {
    bool get ();
    void set (bool value);
}
abstract EnableFunctionLevelLinking : bool with get, set
function get EnableFunctionLevelLinking () : boolean
function set EnableFunctionLevelLinking (value : boolean)

Wartość właściwości

Typ: System.Boolean
true Jeśli włączone jest poziom funkcji łączenia; w przeciwnym razie false.

Przykłady

Zobacz Jak: kompilowania przykładowy kod do projektu modelu rozszerzalności informacji na temat skompilować i uruchomić ten przykład.

Poniższy przykład modyfikuje EnableFunctionLevelLinking 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")
        tool.EnableFunctionLevelLinking = True
    End Sub
End Module

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VCCLCompilerTool Interfejs

Przestrzeń nazw Microsoft.VisualStudio.VCProjectEngine