ClrPlus.Scripting.MsBuild.Packaging.ProjectPlus.AddPropertyInitializer C# (CSharp) Метод

AddPropertyInitializer() приватный Метод

private AddPropertyInitializer ( string propertyName, string conditionExpression, string value, Microsoft.Build.Construction.ProjectPropertyGroupElement ppge = null ) : Microsoft.Build.Construction.ProjectPropertyGroupElement
propertyName string
conditionExpression string
value string
ppge Microsoft.Build.Construction.ProjectPropertyGroupElement
Результат Microsoft.Build.Construction.ProjectPropertyGroupElement
        internal ProjectPropertyGroupElement AddPropertyInitializer(string propertyName, string conditionExpression, string value, ProjectPropertyGroupElement ppge = null)
        {
            ppge = ppge ?? Xml.AddPropertyGroup();
            ppge.Label = "Additional property initializers";
            ppge.AddProperty(propertyName, value).Condition = conditionExpression;
            return ppge;
        }