Udostępnij za pośrednictwem


Właściwość VCLinkerTool.LargeAddressAware —

Pobiera lub ustawia wartość, aby włączyć obsługę adresów większych niż 2 GB.

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

Składnia

'Deklaracja
Property LargeAddressAware As addressAwarenessType
addressAwarenessType LargeAddressAware { get; set; }
property addressAwarenessType LargeAddressAware {
    addressAwarenessType get ();
    void set (addressAwarenessType value);
}
abstract LargeAddressAware : addressAwarenessType with get, set
function get LargeAddressAware () : addressAwarenessType 
function set LargeAddressAware (value : addressAwarenessType)

Wartość właściwości

Typ: Microsoft.VisualStudio.VCProjectEngine.addressAwarenessType
addressAwarenessType Wyliczenie.

Uwagi

LargeAddressAwareudostępnia funkcje /LARGEADDRESSAWARE (Obsługa dużych adresów) opcja programu łączącego.

Użycie addressAwarenessType wyliczenie, aby ustawić tę właściwość.

Zobacz Porady: kompilowanie przykładowego kodu dla rozszerzalności modelu projektów informacje na temat skompilować i uruchomić ten przykład.

Przykłady

Poniższy przykład modyfikuje LargeAddressAware 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 VCLinkerTool
    prj = DTE.Solution.Projects.Item(1).Object
    cfgs = prj.Configurations
    cfg = cfgs.Item(1)
    tool = cfg.Tools("VCLinkerTool")
    tool.LargeAddressAware = addressAwarenessType.addrAwareNoLarge
  End Sub
End Module

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VCLinkerTool Interfejs

Przestrzeń nazw Microsoft.VisualStudio.VCProjectEngine

Inne zasoby

/LARGEADDRESSAWARE

/LARGEADDRESSAWARE (Obsługa dużych adresów)