Condividi tramite


Proprietà VCLinkerTool.ProgramDatabaseFile

Abilita la generazione di un file .pdb di database del programma.

Spazio dei nomi:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Sintassi

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

Valore proprietà

Tipo: System.String
Stringa che rappresenta il nome del file con estensione .pdb.

Note

L'oggetto ProgramDatabaseFile espone la funzionalità dell'opzione del linker /PDB (Usa database di programma).

Vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto per informazioni su come compilare ed eseguire l'esempio.

Esempi

Nell'esempio riportato di seguito la proprietà ProgramDatabaseFile nell'ambiente di sviluppo integrato (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 VCLinkerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCLinkerTool")
        tool.GenerateDebugInformation = True
        tool.ProgramDatabaseFile = "$(OutDir)/my.pdb"
    End Sub
End Module

Sicurezza di .NET Framework

Vedere anche

Riferimenti

VCLinkerTool Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VCProjectEngine