Skip to content

Commit 43253de

Browse files
authored
Merge pull request #858 from polyadic/slnx
Convert solution file to SLNX
2 parents ac0dde1 + 268e3f4 commit 43253de

File tree

6 files changed

+57
-184
lines changed

6 files changed

+57
-184
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ indent_style = space
88
indent_size = 4
99
trim_trailing_whitespace = true
1010

11-
[*.{props,sln,targets}]
11+
[*.{props,slnx,targets}]
1212
indent_style = tab
1313

14+
[*.{slnx}]
15+
end_of_line = crlf
16+
1417
[*.{yml,yaml}]
1518
indent_size = 2
1619

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
* text=auto eol=lf
2-
*.sln text eol=crlf
2+
# Visual Studio always saves the solution
3+
# file with CRLF even if we manually convert it to
4+
# LF beforehand.
5+
*.slnx text eol=crlf
36
*.cs diff=csharp

Funcky.sln

Lines changed: 0 additions & 180 deletions
This file was deleted.

Funcky.slnx

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<Solution>
2+
<Folder Name="/Analyzers/">
3+
<File Path="Funcky.Analyzers/readme.md" />
4+
<Project Path="Funcky.Analyzers/Funcky.Analyzers.CodeFixes/Funcky.Analyzers.CodeFixes.csproj" />
5+
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Package/Funcky.Analyzers.Package.csproj" />
6+
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Test/Funcky.Analyzers.Test.csproj" />
7+
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Vsix/Funcky.Analyzers.Vsix.csproj" />
8+
<Project Path="Funcky.Analyzers/Funcky.Analyzers/Funcky.Analyzers.csproj" />
9+
<Project Path="Funcky.Analyzers/Funcky.BuiltinAnalyzers.CodeFixes/Funcky.BuiltinAnalyzers.CodeFixes.csproj" />
10+
<Project Path="Funcky.Analyzers/Funcky.BuiltinAnalyzers/Funcky.BuiltinAnalyzers.csproj" />
11+
</Folder>
12+
<Folder Name="/Build Config/">
13+
<File Path="Analyzers.props" />
14+
<File Path="Directory.Build.props" />
15+
<File Path="Directory.Packages.props" />
16+
<File Path="FrameworkFeatureConstants.props" />
17+
<File Path="Funcky/CompatibilitySuppressions.xml" />
18+
<File Path="global.json" />
19+
<File Path="GlobalUsings.props" />
20+
<File Path="GlobalUsings.Test.props" />
21+
<File Path="NuGet.config" />
22+
<File Path="PublicApiAnalyzers.targets" />
23+
<File Path="typos.toml" />
24+
</Folder>
25+
<Folder Name="/Generators/">
26+
<Project Path="Funcky.SourceGenerator.Test/Funcky.SourceGenerator.Test.csproj" />
27+
<Project Path="Funcky.SourceGenerator/Funcky.SourceGenerator.csproj" />
28+
</Folder>
29+
<Folder Name="/Solution Items/">
30+
<File Path=".editorconfig" />
31+
<File Path=".gitignore" />
32+
<File Path="changelog.md" />
33+
<File Path="README.md" />
34+
<File Path="SupportPolicy.md" />
35+
</Folder>
36+
<Project Path="Funcky.Async.Test/Funcky.Async.Test.csproj" />
37+
<Project Path="Funcky.Async/Funcky.Async.csproj" />
38+
<Project Path="Funcky.FsCheck/Funcky.FsCheck.fsproj" />
39+
<Project Path="Funcky.Test.Internal/Funcky.Test.Internal.csproj" />
40+
<Project Path="Funcky.Test/Funcky.Test.csproj" />
41+
<Project Path="Funcky.TrimmingTest/Funcky.TrimmingTest.csproj" />
42+
<Project Path="Funcky.Xunit.Test/Funcky.Xunit.Test.csproj" />
43+
<Project Path="Funcky.Xunit.v3.Test/Funcky.Xunit.v3.Test.csproj" />
44+
<Project Path="Funcky.Xunit.v3/Funcky.Xunit.v3.csproj" />
45+
<Project Path="Funcky.Xunit/Funcky.Xunit.csproj" />
46+
<Project Path="Funcky/Funcky.csproj" />
47+
</Solution>

Funcky/Funcky.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<FunckyNewestTargetFramework>net9.0</FunckyNewestTargetFramework>
44
<TargetFrameworks>$(FunckyNewestTargetFramework);net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netstandard2.0;netstandard2.1</TargetFrameworks>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "9.0.200",
44
"rollForward": "feature"
55
}
66
}

0 commit comments

Comments
 (0)