Freigeben über


VCConfiguration.UpToDate-Eigenschaft

Ruft einen Wert ab, der angibt, ob der Buildzustand der aktuellen Konfiguration auf dem neuesten Stand ist.

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

Syntax

'Declaration
ReadOnly Property UpToDate As Boolean
bool UpToDate { get; }
property bool UpToDate {
    bool get ();
}
abstract UpToDate : bool with get
function get UpToDate () : boolean

Eigenschaftswert

Typ: Boolean
true , wenn der Buildzustand der aktuellen Konfiguration auf dem neuesten Stand ist, andernfalls false.

Beispiele

Informationen zum Kompilieren und Ausführen dieses Beispiels finden Sie unter Gewusst wie: Kompilieren von Beispielcode für die Erweiterbarkeit von Projektmodellen.

Der folgende Beispielcode verwendet die UpToDate-Eigenschaft in der integrierten Entwicklungsumgebung (IDE):

' add reference to Microsoft.VisualStudio.VCProjectEngine.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim Test As Boolean
        Dim prj As VCProject
        Dim cfgs As IVCCollection
        Dim cfg As VCConfiguration
        Dim MyDbg As VCDebugSettings
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        Test = cfg.UpToDate
    End Sub
End Module

.NET Framework-Sicherheit

Siehe auch

Referenz

VCConfiguration Schnittstelle

Microsoft.VisualStudio.VCProjectEngine-Namespace