Created
June 14, 2020 14:26
-
-
Save rafaeldalsenter/d7d2c982177c92ece09de197e20a83dd 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 static class CsProjRowExtensions | |
{ | |
private const string _referenceIncludeText = "<Reference Include=\""; | |
public static bool IsReferenceIncludePattern(this string row) | |
=> row != null ? new Regex($"{_referenceIncludeText}.*").IsMatch(row.RowWithoutAdditionSignal()) : false; | |
public static string RowFormatReferenceInclude(this string row) | |
{ | |
var rowSplit = row.RowWithoutAdditionSignal(); | |
if (rowSplit is null || rowSplit.Length < _referenceIncludeText.Length) return null; | |
var rows = rowSplit.Substring(_referenceIncludeText.Length).Split(','); | |
return rows.Length == 0 ? null : rows[0].Split('\"')[0]; | |
} | |
public static bool IsRowAddition(this string row) | |
=> row != null && row.Length > 1 && row.Substring(0, 1).Equals("+"); | |
private static string RowWithoutAdditionSignal(this string row) | |
=> row.IsRowAddition() ? row.Remove(0, 1).TrimStart() : row; | |
public static bool IsCsProjFile(this string name) | |
=> name != null ? new Regex("^.*\\.csproj").IsMatch(name) : false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment