Proprietà Reference3.RevisionNumber
Ottiene il numero di revisione del riferimento.
Spazio dei nomi: VSLangProj80
Assembly: VSLangProj80 (in VSLangProj80.dll)
Sintassi
'Dichiarazione
ReadOnly Property RevisionNumber As Integer
Get
int RevisionNumber { get; }
property int RevisionNumber {
int get ();
}
abstract RevisionNumber : int
function get RevisionNumber () : int
Valore proprietà
Tipo: System.Int32
Valore Long.Il numero restituito dipende dal tipo di riferimento.
Tipo di riferimento |
Valore restituito |
---|---|
Assembly |
Numero versione di revisione del riferimento; 0–9999. |
COM |
0 |
Implementa
Note
La versione di un riferimento è identificata in modo univoco da quattro componenti: numero principale, numero secondario, build e revisione. I componenti numero principale e numero secondario sono obbligatori. Il componente revisione è facoltativo quando non è definito il componente build. Gli oggetti COM non dispongono di componenti revisione e build. Per ulteriori informazioni, vedere Controllo delle versioni degli assembly.
Esempi
Nell'esempio riportato di seguito vengono aggiunti un assembly e un riferimento COM a un progetto aperto di Visual Basic o Visual C# e vengono visualizzati i relativi numeri di revisione. Per eseguire questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione.
I percorsi predefiniti per il riferimento aggiunto sono: <directory radice di installazione>\Programmi\Microsoft.NET\Primary Interop Assemblies per adodb.dll e <directory radice di installazione>\Programmi\File comuni\SpeechEngines\Microsoft per spcommon.dll. Sostituire <percorso file> dell'esempio con questi percorsi di file o altri percorsi appropriati.
Imports VSLangProj
Imports VSLangProj2
Imports VSLangProj80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
applicationObject = CType(application, DTE2)
addInInstance = CType(addInInst, AddIn)
GetRevisionNumber(applicationObject)
End Sub
Sub GetRevisionNumber(ByVal dte As DTE2)
Dim aProject As Project
Dim aVSProject As VSProject2
aProject = applicationObject.Solution.Projects.Item(1)
aVSProject = _
CType(applicationObject.Solution.Projects.Item(1).Object, _
VSProject2)
' Add an Assembly reference and display its minor version.
Dim newRef As Reference3
Try
' Replace <file path> with an actual file path.
newRef = CType(aVSProject.References.Add _
("<file path>\adodb.dll"), Reference3)
Catch e As System.Exception
End Try
MsgBox("Added an assembly reference, named: " & newRef.Name)
MsgBox("The revision number of " & newRef.Name & " is " _
& newRef.RevisionNumber.ToString())
' Add a COM reference and display its minor version.
Try
' Replace <file path> with an actual file path.
newRef = CType(aVSProject.References.Add_
("<file path>\spcommon.dll"),_
Reference3)
Catch e As System.Exception
End Try
MsgBox("Added a COM reference, named: " & newRef.Name)
MsgBox("The revision number of " & newRef.Name & " is " _
& newRef.RevisionNumber.ToString())
End Sub
using System.Windows.Forms;
using VSLangProj;
using VSLangProj2;
using VSLangProj80;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
applicationObject = (DTE2)application;
addInInstance = (AddIn)addInInst;
GetRevisionNumber(((DTE2)applicationObject));
}
public void GetRevisionNumber(DTE2 dte)
{
// The first project is a Visual Basic or C# project.
VSProject2 vsProject =
((VSProject2)(applicationObject.Solution.Projects.Item(1).Object));
Reference3 aRef = null;
// Add an Assembly reference and display its revision number.
// Replace <file path> with an actual file path.
aRef = (Reference3)vsProject.References.Add
(@"<file path>\adodb.dll");
MessageBox.Show("Added an Assembly reference, named: "
+ aRef.Name);
MessageBox.Show("The revision number of " + aRef.Name + " is "
+ aRef.RevisionNumber.ToString());
// Add a COM reference and display its revision number.
// Replace <file path> with an actual file path.
aRef = (Reference3)vsProject.References.Add
(@"File path>\spcommon.dll");
MessageBox.Show("Added a COM reference, named: " + aRef.Name);
MessageBox.Show("The revision number of " + aRef.Name + " is "
+ aRef.RevisionNumber.ToString());
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.