コード例 #1
0
		string GetProperty (MSBuildPropertyGroup propertyGroup, string name)
		{
			return propertyGroup.GetProperty (name)?.Value;
		}
コード例 #2
0
 MSBuildProperty AddProperty(MSBuildPropertyGroup propertyGroup, string name, string unevaluatedValue)
 {
     propertyGroup.SetValue(name, unevaluatedValue);
     return(propertyGroup.GetProperty(name));
 }
コード例 #3
0
 string GetProperty(MSBuildPropertyGroup propertyGroup, string name)
 {
     return(propertyGroup.GetProperty(name)?.Value);
 }