Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Linq2GraphQL.Generator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static async Task GenerateClientAsync(Uri uri, string outputFolder, stri
foreach (var entry in dirName)
{
var filePath = Path.Combine(directory, entry.FileName);
await File.WriteAllTextAsync(filePath, entry.Content);
await File.WriteAllTextAsync(filePath, entry.Content.ReplaceLineEndings("\n"));
}
}
}
Expand Down
Loading