VCProject.Version - метод
Sets or returns the major and minor version numbers of the project.
Пространство имен: Microsoft.VisualStudio.VCProjectEngine
Сборка: Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)
Синтаксис
'Декларация
Sub Version ( _
<OutAttribute> ByRef major As Integer, _
<OutAttribute> ByRef minor As Integer _
)
'Применение
Dim instance As VCProject
Dim major As Integer
Dim minor As Integer
instance.Version(major, minor)
void Version(
out int major,
out int minor
)
void Version(
[OutAttribute] int% major,
[OutAttribute] int% minor
)
function Version(
major : int,
minor : int
)
Параметры
major
Тип: System.Int32%An integer representing the major version of the project.
minor
Тип: System.Int32%An integer representing the minor version of the project.
Примеры
See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.
' Add a reference to Microsoft.VisualStudio.VCProjectEngine before
' running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim sln As Solution
Dim prj As VCProject
prj = DTE.Solution.Item(1).Object
prj.Version("4", "5")
End Sub
End Module
Разрешения
- Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.