Condividi tramite


Proprietà VCLinkerTool.Version

Ottiene o imposta un valore che rappresenta il numero di versione nell'intestazione dell'immagine.

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

Sintassi

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

Valore proprietà

Tipo: String
Stringa che rappresenta il numero di versione.

Note

Version espone la funzionalità dell'opzione del linker /VERSION (Informazioni sulla versione).

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à Version del linker 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.Version = "x.x"
    End Sub
End Module

Sicurezza di .NET Framework

Vedere anche

Riferimenti

VCLinkerTool Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VCProjectEngine