/// <summary> /// Adds refs, only if it won't cause any issues to the template generator /// </summary> /// <param name="res">refs to add</param> private void SafeAddRangeRef(IEnumerable <string> res) { Refs.AddRange(res.Where(r => !string.IsNullOrWhiteSpace(r))); }