Skip to content

Instantly share code, notes, and snippets.

@rafaeldalsenter
Created June 14, 2020 14:07
Show Gist options
  • Save rafaeldalsenter/ba1073f77b03b307b54199870d093a13 to your computer and use it in GitHub Desktop.
Save rafaeldalsenter/ba1073f77b03b307b54199870d093a13 to your computer and use it in GitHub Desktop.
public class CsprojFileServices : ICsprojFileServices
{
public IEnumerable<string> GetChangedReferences(string path)
{
var pathJoin = path.Split(new[] {"\n"}, StringSplitOptions.None);
return pathJoin.Where(x => x.IsRowAddition() &&
x.IsReferenceIncludePattern())
.Select(x => x.RowFormatReferenceInclude());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment