VCReference.minorVersion Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the minor version of the referenced assembly.
public:
property int minorVersion { int get(); };
public:
property int minorVersion { int get(); };
[System.Runtime.InteropServices.DispId(2008)]
public int minorVersion { [System.Runtime.InteropServices.DispId(2008)] get; }
[<System.Runtime.InteropServices.DispId(2008)>]
[<get: System.Runtime.InteropServices.DispId(2008)>]
member this.minorVersion : int
Public ReadOnly Property minorVersion As Integer
Property Value
An int value representing the minor version of the referenced assembly.
- Attributes
Examples
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
The following example lists the value of the minorVersion property of the assembly reference:
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim vcar As VCAssemblyReference
prj = DTE.Solution.Projects.Item(1).Object
vcar = prj.VCReferences.item(1)
MsgBox("Minor version: " & vcar.MinorVersion)
End Sub
End Module