We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d35169 commit b174aa5Copy full SHA for b174aa5
.gitattributes
@@ -4,6 +4,7 @@
4
* text=auto
5
6
# C# files should use CRLF.
7
+*.tt text eol=crlf
8
*.cs text eol=crlf
9
10
# C++ files should use CRLF.
package/Codegen/Program.cs
@@ -535,7 +535,6 @@ private static string PackageRoot
535
536
private static bool UpdateFile(string path, string newContent)
537
{
538
- newContent = newContent.Replace("\r", "");
539
var existing = File.Exists(path) ? File.ReadAllText(path) : "";
540
if (existing != newContent)
541
0 commit comments