VCCLCompilerTool.Detect64BitPortabilityProblems Özellik
Alır veya derleyici 64-bit taşınabilirlik sorunlarını denetleyin olup olmadığını gösteren bir değeri ayarlar. Detect64BitPortabilityProblemsDerleyici 's iþlevselliði / Wp64 (64-Bit taşınabilirlik sorunları algılama) seçeneği.
Ad alanı: Microsoft.VisualStudio.VCProjectEngine
Derleme: Microsoft.VisualStudio.VCProjectEngine (Microsoft.VisualStudio.VCProjectEngine.dll içinde)
Sözdizimi
'Bildirim
Property Detect64BitPortabilityProblems As Boolean
bool Detect64BitPortabilityProblems { get; set; }
property bool Detect64BitPortabilityProblems {
bool get ();
void set (bool value);
}
abstract Detect64BitPortabilityProblems : bool with get, set
function get Detect64BitPortabilityProblems () : boolean
function set Detect64BitPortabilityProblems (value : boolean)
Özellik Değeri
Tür: System.Boolean
true Derleyici için 64-bit taşınabilirlik sorunları kontrol eder Aksi halde, false.
Ö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 Detect64BitPortabilityProblems 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.Detect64BitPortabilityProblems = True
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.