Propriedade Reference3.BuildNumber
Obtém o número de compilação da referência.
Namespace: VSLangProj80
Assembly: VSLangProj80 (em VSLangProj80.dll)
Sintaxe
'Declaração
ReadOnly Property BuildNumber As Integer
int BuildNumber { get; }
property int BuildNumber {
int get ();
}
abstract BuildNumber : int
function get BuildNumber () : int
Valor de propriedade
Tipo: System.Int32
Um valor Long.O valor retornado depende do tipo de referência.
Tipo de referência |
Valor retornado |
---|---|
Assembly |
Construir o número da referência; 0-9999. |
COM |
0 |
Comentários
O BuildNumber propriedade obtém o build componentes de um número de versão.A versão de uma referência é identificada exclusivamente por quatro componentes: principais, secundária, build, e Revisão.O principais e secundária componentes são necessários.O revisão componente é opcional quando build não está definido.Objetos COM não tem revisão e build componentes.Para obter mais informações, consulte Versionamento de assembly.
Exemplos
Este exemplo adiciona um assembly e uma referência COM uma abertura Visual Basic ou Visual C# de projeto e exibe o número de compilação para cada referência em uma caixa de mensagem.Para executar este exemplo como um add-in, consulte Como: compilar e executar os exemplos de código de modelo de objeto de automação.
Os caminhos de padrão para as referências adicionadas são: < raiz da instalação >\Program Files\Microsoft.NET\Primary Interop Assemblies para adodb.dll, e < raiz da instalação >\Program Files\Common Files\SpeechEngines\Microsoft para spcommon.dll.Substituir < caminho do arquivo > no exemplo com esses ou outros caminhos de arquivo apropriado.
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)
AddRefPlusBuild(applicationObject)
End Sub
Sub AddRefPlusBuild(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 build number.
Dim newRef As Reference3
' Replace <file path> with an actual file path.
newRef = aVSProject.References.Add("<file path>\adodb.dll")
MsgBox("The " & newRef.Name() & " has a build number:" & vbCr _
& newRef.BuildNumber.ToString())
' Add a COM reference and display its build number. Should be 0.
' Replace <file path> with an actual file path.
newRef = aVSProject.References.Add("<file path>\spcommon.dll")
MsgBox("The " & newRef.Name() & " has a build number:" & _
vbCr & newRef.BuildNumber.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;
AddRefPlusBuild(((DTE2)applicationObject));
}
public void AddRefPlusBuild(DTE2 dte)
{
Project aProject = null;
VSProject2 aVSProject = null;
aProject = applicationObject.Solution.Projects.Item(1);
aVSProject =
((VSProject2)(applicationObject.Solution.Projects.Item(1).Object));
// Add an Asembly reference and display its build number.
Reference3 newRef = null;
// Replace <file path> with an actual file path.
newRef = ((Reference3)(aVSProject.References.Add(@"
<file path>\adodb.dll")));
MessageBox.Show("The " + newRef.Name.ToString() +
" has a build number:" + "\n" + newRef.BuildNumber.ToString());
// Add a COM reference and display its build number.
// Replace <file path> with an actual file path.
newRef = ((Reference3)(aVSProject.References.Add(@"
<file path>\spcommon.dll")));
MessageBox.Show("The " + newRef.Name.ToString() + " has a build
number:" + "\n" + newRef.BuildNumber.ToString());
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.