This commit is contained in:
Jon Thysell (JAUNTY) 2022-01-26 13:04:37 -08:00
Родитель 0d35169d5b
Коммит b174aa5245
2 изменённых файлов: 1 добавлений и 1 удалений

1
.gitattributes поставляемый
Просмотреть файл

@ -4,6 +4,7 @@
* text=auto
# C# files should use CRLF.
*.tt text eol=crlf
*.cs text eol=crlf
# C++ files should use CRLF.

Просмотреть файл

@ -535,7 +535,6 @@ namespace Codegen
private static bool UpdateFile(string path, string newContent)
{
newContent = newContent.Replace("\r", "");
var existing = File.Exists(path) ? File.ReadAllText(path) : "";
if (existing != newContent)
{