From afc9651a648e899c4743be36d0e9018c947047b6 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Wed, 9 Aug 2017 14:11:27 +0200 Subject: [PATCH] build: check out *.sln files with Windows line endings Visual Studio doesn't like LF line endings in solution files and always converts them to CRLF when doing changes to the solution. Notably, this affects the solutions in the release archive. Closes https://github.com/curl/curl/pull/1746 --- projects/Windows/.gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 projects/Windows/.gitattributes diff --git a/projects/Windows/.gitattributes b/projects/Windows/.gitattributes new file mode 100644 index 000000000..391fd002c --- /dev/null +++ b/projects/Windows/.gitattributes @@ -0,0 +1 @@ +*.sln eol=crlf