Skip to content

Commit c73e770

Browse files
authored
Migrates solution to .slnx format (2) (#209)
* Update support for .slnx files Extends support to recognize and handle .slnx solution files in addition to .sln files. This ensures consistent configuration and formatting for both types of solution files across the project. * Fixes typo in .editorconfig Corrects a typo in the .editorconfig file, changing ".slnx}" to "slnx}". This ensures correct application of code style settings for Visual Studio solution files.
1 parent bb2fc56 commit c73e770

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
*.cs text=auto diff=csharp
1414

1515
*.csproj text=auto
16-
*.sln text=auto eol=crlf
16+
*.sln text=auto eol=crlf
17+
*.slnx text=auto eol=crlf

MarkdownLinkCheckLogParser/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ trim_trailing_whitespace = true
2626
##########################################
2727

2828
# Visual Studio Solution Files
29-
[*.sln]
29+
[*.{sln,slnx}]
3030
indent_style = tab
3131

3232
# Visual Studio XML Project Files

0 commit comments

Comments
 (0)