Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ indent_size = 4
tab_width = 4

# New line preferences
end_of_line = crlf
insert_final_newline = false
end_of_line = lf
insert_final_newline = true
Comment thread
BenjaminMichaelis marked this conversation as resolved.

#### .NET Coding Conventions ####
[*.{cs,vb}]
Expand Down
35 changes: 35 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Auto normalize line endings for all tracked files
* text=auto

# Explicitly normalize to LF for text files
*.cs text eol=lf
*.csproj text eol=lf
*.props text eol=lf
*.targets text eol=lf
*.sln text eol=lf
*.slnx text eol=lf
*.md text eol=lf
*.json text eol=lf
*.xml text eol=lf
Comment thread
BenjaminMichaelis marked this conversation as resolved.
*.yml text eol=lf
*.yaml text eol=lf
*.config text eol=lf
*.editorconfig text eol=lf
*.gitignore text eol=lf
*.gitattributes text eol=lf

# Binary files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.otf binary
*.fnt binary
3 changes: 2 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See: https://learn.microsoft.com/visualstudio/msbuild/customize-your-build
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<LangVersion>14</LangVersion>
<!--
If you you like to see source generated files saved to disk you can enable the following:
https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/source-generators-overview
Expand Down Expand Up @@ -42,6 +42,7 @@ See: https://learn.microsoft.com/visualstudio/msbuild/customize-your-build
<PackageProjectUrl>https://github.com/BenjaminMichaelis/TrxLib</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>trx;test-results;xml;parser</PackageTags>
</PropertyGroup>

<PropertyGroup Label="SourceLink">
Expand Down
1 change: 1 addition & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<!-- This property enables the Central Package Management feature -->
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<!--
This defines the set of centrally managed packages.
Expand Down
Loading