Aracılığıyla paylaş


VCCLCompilerTool.PrecompiledHeaderThrough Özellik

Alır veya ayarlar oluştururken veya önceden derlenmiş üstbilgi dosyası kullanarak üstbilgi dosyası adı. PrecompiledHeaderThroughDerleyici 's iþlevselliði /Yc (önceden derlenmiş üstbilgi dosyası oluşturma), ve /Yu (kullanım önceden derlenmiş üstbilgi dosyası) seçenekleri.

Ad alanı:  Microsoft.VisualStudio.VCProjectEngine
Derleme:  Microsoft.VisualStudio.VCProjectEngine (Microsoft.VisualStudio.VCProjectEngine.dll içinde)

Sözdizimi

'Bildirim
Property PrecompiledHeaderThrough As String
string PrecompiledHeaderThrough { get; set; }
property String^ PrecompiledHeaderThrough {
    String^ get ();
    void set (String^ value);
}
abstract PrecompiledHeaderThrough : string with get, set
function get PrecompiledHeaderThrough () : String
function set PrecompiledHeaderThrough (value : String)

Özellik Değeri

Tür: System.String
Oluşturma veya önceden derlenmiş üstbilgi dosyası kullanarak kullanılacak üstbilgi dosyası adı.

Örnekler

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.

Aşağıdaki örnek değiştirir PrecompiledHeaderThrough tümleşik geliştirme ortamını (IDE) özelliği:

' 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.PrecompiledHeaderThrough = "MyFile.h"
    End Sub
End Module

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

VCCLCompilerTool Arabirim

Microsoft.VisualStudio.VCProjectEngine Ad Alanı