Reference3.RevisionNumber – vlastnost
Referenční číslo revize získá.
Obor názvů: VSLangProj80
Sestavení: VSLangProj80 (v VSLangProj80.dll)
Syntaxe
'Deklarace
ReadOnly Property RevisionNumber As Integer
Get
int RevisionNumber { get; }
property int RevisionNumber {
int get ();
}
abstract RevisionNumber : int
function get RevisionNumber () : int
Hodnota vlastnosti
Typ: System.Int32
Dlouhé.Vrácený počet závisí na typu odkazu.
Typ odkazu |
Vrácená hodnota |
---|---|
Sestavení |
Číslo verze revize referenční; 0–9999. |
COM |
0 |
Implementuje
Poznámky
Odkaz na verzi jedinečně identifikovány čtyři součásti: major, minor, build, and revision. Hlavní a dílčí je třeba součásti. Revize součást je nepovinné, pokud sestavení není definována. Objekty COM nemají Revize a sestavení komponent. Další informace naleznete v tématu Správa verzí sestavení.
Příklady
Tento příklad přidá sestavení a odkaz na otevření COM Visual Basic nebo Visual C# projektu a poté zobrazí jejich čísla revize. Chcete-li spustit tento příklad-in, viz How to: Compile and Run the Automation Object Model Code Examples.
Výchozí cesty k přidání odkazu jsou: < kořenový adresář instalace >\Program Files\Microsoft.NET\Primary sestavení Interop pro adodb.dll, a < kořenový adresář instalace >\Program Files\Common Files\SpeechEngines\Microsoft spcommon.dll. Nahradit < cesta > v příkladu se tyto nebo jiné cest.
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());
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.