-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better feature branch support #189
Better feature branch support #189
Conversation
@andreasohlund can you review, make sure it doesn't break any of your workflows |
@@ -29,7 +29,7 @@ public static void AppendLineFormat(this StringBuilder stringBuilder, string for | |||
|
|||
public static string TrimStart(this string value, string toTrim) | |||
{ | |||
if (!value.StartsWith(toTrim)) | |||
if (!value.StartsWith(toTrim, StringComparison.InvariantCultureIgnoreCase)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think fody does this already?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup
Sent from my iPhone
On 07 Jun 2014, at 13:18, Jake Ginnivan notifications@github.com wrote:
In GitVersionCore/ExtensionMethods.cs:
@@ -29,7 +29,7 @@ public static void AppendLineFormat(this StringBuilder stringBuilder, string for
public static string TrimStart(this string value, string toTrim) {
if (!value.StartsWith(toTrim))
I think fody does this already?if (!value.StartsWith(toTrim, StringComparison.InvariantCultureIgnoreCase))
—
Reply to this email directly or view it on GitHub.
👍 |
Looks good to me (we're not using feature branches) Sent from my iPhone
|
Better feature branch support
Alternate way to solve what #184 is solving