Freigeben über


ConfigurationManager.PlatformNames-Eigenschaft

Ruft eine Liste aller verfügbaren Plattformen ab.

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

Syntax

'Declaration
ReadOnly Property PlatformNames As Object
Object PlatformNames { get; }
property Object^ PlatformNames {
    Object^ get ();
}
abstract PlatformNames : Object with get
function get PlatformNames () : Object

Eigenschaftswert

Typ: Object
Ein Objekt.

Hinweise

Die Liste enthält alle Plattformnamen mit Buildeinstellungen für das mit diesem ConfigurationManager-Objekt verknüpfte Projekt.

Beispiele

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);
    }
}

.NET Framework-Sicherheit

Siehe auch

Referenz

ConfigurationManager Schnittstelle

EnvDTE-Namespace