You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like we have git configured for our repos to convert CRLF in source code to just LF. This is causing problems for unit tests that using verbatim string literals that assume that these strings will use CRLF for new lines. This is also discussed here:
I've been also seeing build warnings saying that LFs will be converted into CRLFs for months now, which is probably related. I think @marcusbooyah must have changed the checkout policy a while ago.
We could reset this policy to CRLF locally but I don't want to go there right now. I'm going to modify the tests to ignore CR characters when present instead.
The text was updated successfully, but these errors were encountered:
It looks like we have git configured for our repos to convert CRLF in source code to just LF. This is causing problems for unit tests that using verbatim string literals that assume that these strings will use CRLF for new lines. This is also discussed here:
https://stackoverflow.com/questions/48196840/c-sharp-verbatim-string-line-breaks-crlf-cr-or-lf
I've been also seeing build warnings saying that LFs will be converted into CRLFs for months now, which is probably related. I think @marcusbooyah must have changed the checkout policy a while ago.
We could reset this policy to CRLF locally but I don't want to go there right now. I'm going to modify the tests to ignore CR characters when present instead.
The text was updated successfully, but these errors were encountered: