Udostępnij za pośrednictwem


Właściwość VCCLCompilerTool.ExpandAttributedSource —

Pobiera lub ustawia wartość określającą, czy należy utworzyć plik aukcji z rozwiniętym atrybuty dodane do pliku źródłowego.ExpandAttributedSourceOpisuje funkcje kompilatora /FX (kod scalania) opcji.

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

Składnia

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

Wartość właściwości

Typ: System.Boolean
true Aby utworzyć plik aukcji z rozwiniętym atrybuty dodane do pliku źródłowego; w przeciwnym razie false.

Przykłady

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

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VCCLCompilerTool Interfejs

Przestrzeń nazw Microsoft.VisualStudio.VCProjectEngine