Created
June 14, 2020 14:07
-
-
Save rafaeldalsenter/ba1073f77b03b307b54199870d093a13 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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