SolutionContext.PlatformName, propriété
Obtient le nom de la plateforme prise en charge par cette assignation.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
ReadOnly Property PlatformName As String
Get
string PlatformName { get; }
property String^ PlatformName {
String^ get ();
}
abstract PlatformName : string
function get PlatformName () : String
Valeur de propriété
Type : System.String
Chaîne représentant le nom de la plateforme prise en charge par cette assignation.
Notes
Si le projet ne prend en charge aucune plateforme, PlatformName retourne une chaîne vide.
Exemples
Sub PlatformNameExample(ByVal dte As DTE2)
' Before running this example, open a project.
' Display the solution contexts of the Debug configuration.
Dim config As SolutionConfiguration = _
dte.Solution.SolutionBuild.SolutionConfigurations.Item("Debug")
Dim context As SolutionContext
Dim msg As String
msg &= config.Name & " Configuration Project Platforms:" & _
vbCrLf & vbCrLf
For Each context In config.SolutionContexts
msg &= " " & context.ProjectName & " = " & _
context.PlatformName & vbCrLf
Next
MsgBox(msg)
End Sub
public void PlatformNameExample(DTE2 dte)
{
// Before running this example, open a project.
// Display the solution contexts of the Debug configuration.
SolutionConfiguration config =
dte.Solution.SolutionBuild.SolutionConfigurations.Item(
"Debug");
string msg = "";
msg += config.Name + " Configuration Project Platforms:\n\n";
foreach (SolutionContext context in config.SolutionContexts)
msg += " " + context.ProjectName + " = " +
context.PlatformName + "\n";
MessageBox.Show(msg);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Autres ressources
Comment : compiler et exécuter les exemples de code du modèle objet Automation