VCConfiguration.ConfigurationName-Eigenschaft
Ruft die zu erstellende Projektkonfiguration ab oder legt diese fest.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Property ConfigurationName As String
string ConfigurationName { get; set; }
property String^ ConfigurationName {
String^ get ();
void set (String^ value);
}
abstract ConfigurationName : string with get, set
function get ConfigurationName () : String
function set ConfigurationName (value : String)
Eigenschaftswert
Typ: String
Die zu erstellende Projektkonfiguration.
Hinweise
Für ConfigurationName kann jede definierte Projektkonfiguration festgelegt werden, die durch die ProjectName-Eigenschaft benannt wird.
Beispiele
Sub ConfigurationNameExample()
' Before running, load a project.
' Set references to all necessary objects.
Dim CM As ConfigurationManager = DTE.Solution.Projects.Item(1).ConfigurationManager
' List the configuration name used for the current project.
MsgBox(CM.Item(2).ConfigurationName)
End Sub
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.