mirror of https://github.com/ppy/SDL3-CS.git
Merge pull request #222 from Susko3/fix-line-endings-in-g.cs
Fix checked out line endings in `*.g.cs` files
This commit is contained in:
commit
dc1e1a10af
|
|
@ -22,4 +22,8 @@ App.config text eol=crlf
|
||||||
.gitignore text eol=lf
|
.gitignore text eol=lf
|
||||||
.gitattributes text eol=lf
|
.gitattributes text eol=lf
|
||||||
*.md text eol=lf
|
*.md text eol=lf
|
||||||
.travis.yml text eol=lf
|
.travis.yml text eol=lf
|
||||||
|
|
||||||
|
# Use lf for files used by ClangSharpPInvokeGenerator
|
||||||
|
*-license-header.txt text eol=lf
|
||||||
|
*.g.cs text eol=lf
|
||||||
|
|
|
||||||
|
|
@ -255,7 +255,7 @@ def typedef(t):
|
||||||
|
|
||||||
base_command = [
|
base_command = [
|
||||||
"dotnet", "tool", "run", "ClangSharpPInvokeGenerator",
|
"dotnet", "tool", "run", "ClangSharpPInvokeGenerator",
|
||||||
"--headerFile", csproj_root / "SDL.licenseheader",
|
"--headerFile", csproj_root / "SDL-license-header.txt",
|
||||||
|
|
||||||
"--config",
|
"--config",
|
||||||
"latest-codegen",
|
"latest-codegen",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue