VCFileConfiguration.OutputUpToDate Özellik
Çıktı belirtilen dosyanın güncel olup olmadığını gösteren bir değeri alır.
Ad alanı: Microsoft.VisualStudio.VCProjectEngine
Derleme: Microsoft.VisualStudio.VCProjectEngine (Microsoft.VisualStudio.VCProjectEngine.dll içinde)
Sözdizimi
'Bildirim
ReadOnly Property OutputUpToDate As Boolean
bool OutputUpToDate { get; }
property bool OutputUpToDate {
bool get ();
}
abstract OutputUpToDate : bool with get
function get OutputUpToDate () : boolean
Özellik Değeri
Tür: System.Boolean
true Çıkış güncel ise; Aksi halde, false.
Notlar
Bkz: Nasıl yapılır: proje modeli genişletilebilirlik amacıyla örnek kodu derleyin derlemek ve bu örnek çalıştırma hakkında bilgi için.
Örnekler
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim file, file2 As VCFile
Dim col As IVCCollection
Dim fileconfig As VCFileConfiguration
Dim prj As VCProject
prj = DTE.Solution.Projects.Item(1).Object
col = prj.Files
file = col.Item(1)
col = file.FileConfigurations
fileconfig = col.Item("Debug|Win32")
MsgBox("Output file up-to-date? " & _
fileconfig.OutputUpToDate.ToString)
End Sub
End Module
.NET Framework Güvenliği
- Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen güvenilen kod kitaplıklarını kullanma.