Propriedade ConfigurationManager.PlatformNames

Obtém uma lista de todas as plataformas disponíveis.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
ReadOnly Property PlatformNames As Object
Object PlatformNames { get; }
property Object^ PlatformNames {
    Object^ get ();
}
abstract PlatformNames : Object
function get PlatformNames () : Object

Valor de propriedade

Tipo: System.Object
Um objeto.

Comentários

A lista inclui todos os nomes de plataforma que tenham configurações de compilação para o projeto associado a esta ConfigurationManager objeto.

Exemplos

public void CodeExample(DTE2 dte, AddIn addin)
{   // Make sure you have a solution loaded into Visual Studio
    // before running the following example.
    try
    {
        ConfigurationManager configmgr;
        Array arrayPN;
        if (dte.Solution.Projects.Count > 0)
        {
            configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;

            // Show all available platforms.
            arrayPN = (Array)configmgr.PlatformNames;
            string pfnames = "Platform Names: \n";
            foreach (string p in arrayPN)
                pfnames = pfnames + p + "\n";
            MessageBox.Show(pfnames);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Segurança do .NET Framework

Consulte também

Referência

ConfigurationManager Interface

Namespace EnvDTE