Condividi tramite


Proprietà SolutionConfiguration2.DTE

Ottiene l'oggetto di estensibilità di primo livello.

Spazio dei nomi:  EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

Sintassi

'Dichiarazione
ReadOnly Property DTE As DTE
    Get
DTE DTE { get; }
property DTE^ DTE {
    DTE^ get ();
}
abstract DTE : DTE
function get DTE () : DTE

Valore proprietà

Tipo: EnvDTE.DTE
Un oggetto DTE.

Implementa

SolutionConfiguration.DTE

Note

In Visual Studio, DTE rappresenta l'oggetto radice del modello di automazione, spesso chiamato "Applicazione" in altri modelli a oggetti.

Esempi

In questo esempio viene visualizzato il nome del progetto attivo ottenuto mediante l'oggetto DTE per il primo elemento. e aprire un progetto nell'ambiente di sviluppo integrato (IDE) Visual Studio.

Per ulteriori informazioni sulla modalità di esecuzione di questo esempio come componente aggiuntivo, vedere Procedura: compilare ed eseguire gli esempi di codice del modello a oggetti di automazione.

Imports EnvDTE
Imports EnvDTE80
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)
    SolutionConfigurationDTEExample(_applicationObject)
End Sub
Sub SolutionConfigurationDTEExample(ByVal dte As DTE2)
    Try
        Dim builder As SolutionBuild = _
        _applicationObject.Solution.SolutionBuild
        Dim config As SolutionConfiguration2
            config = CType(builder.SolutionConfigurations.Item(1) _
        , SolutionConfiguration2)
        MsgBox("The active solution project, obtained through the  _
        DTE object, is: "  _
        & config.DTE.ActiveSolutionProjects.ToString())
    Catch ex As System.Exception
        MsgBox(ex.ToString)
    End Try
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application, 
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
    _applicationObject = (DTE2)application;
    _addInInstance = (AddIn)addInInst;
    SolutionConfigurationDTEExample(_applicationObject);
}
public void SolutionConfigurationDTEExample(DTE2 dte)
{
    try
    {
        SolutionBuild builder =
 _applicationObject.Solution.SolutionBuild;
        SolutionConfiguration2 config;
        config =
 (SolutionConfiguration2)builder.SolutionConfigurations.Item(1);
        MessageBox.Show("The active solution project, obtained through
 the DTE object, is: " + config.DTE.ActiveSolutionProjects.ToString());
    }
    catch(SystemException ex)
    {
        MessageBox.Show(ex.ToString());
    }
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

SolutionConfiguration2 Interfaccia

Overload DTE

Spazio dei nomi EnvDTE80