CCNet.Build.Common.ProjectDocument.GetCommonProperties C# (CSharp) Method

GetCommonProperties() public method

Gets all common properties.
public GetCommonProperties ( ) : string>.Dictionary
return string>.Dictionary
		public Dictionary<string, string> GetCommonProperties()
		{
			return SelectElements("/ms:Project/ms:PropertyGroup[not(@Condition)]")
				.SelectMany(group => group.Elements())
				.ToDictionary(node => node.Name.LocalName, node => node.Value);
		}