AddResultMSBuildProperties() public method

public AddResultMSBuildProperties ( List result ) : void
result List
return void
Ejemplo n.º 1
0
        private void FindMSBuildProperties(Query query, bool defaultToAll = false)
        {
            var result = FindInList(query.GetSearchTermForMSBuildSearch(), msbuildProperties, defaultToAll);

            if (result != null && result.Any())
            {
                query.AddResultMSBuildProperties(result.ToList());
            }
        }
Ejemplo n.º 2
0
 private void FindMSBuildProperties(Query query, bool defaultToAll = false)
 {
     var result = FindInList(query.GetSearchTermForMSBuildSearch(), msbuildProperties, defaultToAll);
     if (result != null && result.Any())
     {
         query.AddResultMSBuildProperties(result.ToList());
     }
 }