Compartir a través de


VSProject2.PublishManager (Propiedad)

Obtiene un objeto PublishManager que permite hacer clic una vez realizada la publicación.

Espacio de nombres:  VSLangProj80
Ensamblado:  VSLangProj80 (en VSLangProj80.dll)

Sintaxis

'Declaración
ReadOnly Property PublishManager As Object
Object PublishManager { get; }
property Object^ PublishManager {
    Object^ get ();
}
abstract PublishManager : Object with get
function get PublishManager () : Object

Valor de propiedad

Tipo: Object
Un objeto PublishManager.

Ejemplos

Para ejecutar este ejemplo como complemento, vea Cómo: Compilar y ejecutar los ejemplos de código del modelo de objetos de automatización. En este ejemplo se supone que el primer proyecto de la solución es un proyecto de Visual Basic o Visual C#.

[Visual Basic]

' Add-in code.
' Open a Visual Basic or C# project before
' running this example.
Imports VSLangProj
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)
    PublishManagerTest(applicationObject)
End Sub
Sub PublishManagerTest(ByVal dte As DTE2)
    Dim aProject As Project
    Dim aVSProject As VSProject2
    aProject = applicationObject.Solution.Projects.Item(1)
    MsgBox("Project kind is: " & aProject.Kind & vbCr _
    & "Project name is: " & aProject.Name)
    aVSProject = CType(applicationObject.Solution.Projects.Item(1)._
    Object, VSProject2)
    MsgBox("The full name of the project is:" _
    & vbCr & aVSProject.Project.FullName)
    MsgBox("The PublishManager's name is: " _
    & aVSProject.PublishManager.ToString)
End Sub

[C#]

// Add-in code.
// Open a Visual Basic or C# project before
// running this example.
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;
    BuildManagerTest((DTE2)applicationObject);
}
public void BuildManagerTest(DTE2 dte)
{
    Project aProject = null;
    VSProject2 aVSProject = null;
    aProject = applicationObject.Solution.Projects.Item(1);
    MessageBox.Show("Project kind is: " + aProject.Kind + 
"\n" + "Project name is: " + aProject.Name);
    aVSProject = ((VSProject2)
( applicationObject.Solution.Projects.Item(1).Object));
    MessageBox.Show("The full name of the project is:" + 
"\n" + aVSProject.Project.FullName);
    MessageBox.Show("The PublishManager's name is: " 
+ aVSProject.PublishManager.ToString());
}

Seguridad de .NET Framework

Vea también

Referencia

VSProject2 Interfaz

VSLangProj80 (Espacio de nombres)