Propriedade ConfigurationManager.SupportedPlatforms

Obtém uma lista de nomes de plataforma que podem ser adicionados a este projeto e que podem ser adicionados para criar configurações de compilação.

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

Sintaxe

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

Valor de propriedade

Tipo: System.Object
A SafeArray de seqüências de caracteres.

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 arraySP;
        if (dte.Solution.Projects.Count > 0)
        {
            configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;

            // Show all supported platforms.
            arraySP = (Array)configmgr.SupportedPlatforms;
            string sp = "Supported Platforms: \n";
            foreach (string s in arraySP)
                sp = sp + s + "\n";
            MessageBox.Show(sp);
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Segurança do .NET Framework

Consulte também

Referência

ConfigurationManager Interface

Namespace EnvDTE