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
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.{props,sln,targets}]
[*.{props,slnx,targets}]
indent_style = tab

[*.{slnx}]
end_of_line = crlf

[*.{yml,yaml}]
indent_size = 2

Expand Down
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* text=auto eol=lf
*.sln text eol=crlf
# Visual Studio always saves the solution
# file with CRLF even if we manually convert it to
# LF beforehand.
*.slnx text eol=crlf
*.cs diff=csharp
180 changes: 0 additions & 180 deletions Funcky.sln

This file was deleted.

47 changes: 47 additions & 0 deletions Funcky.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<Solution>
<Folder Name="/Analyzers/">
<File Path="Funcky.Analyzers/readme.md" />
<Project Path="Funcky.Analyzers/Funcky.Analyzers.CodeFixes/Funcky.Analyzers.CodeFixes.csproj" />
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Package/Funcky.Analyzers.Package.csproj" />
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Test/Funcky.Analyzers.Test.csproj" />
<Project Path="Funcky.Analyzers/Funcky.Analyzers.Vsix/Funcky.Analyzers.Vsix.csproj" />
<Project Path="Funcky.Analyzers/Funcky.Analyzers/Funcky.Analyzers.csproj" />
<Project Path="Funcky.Analyzers/Funcky.BuiltinAnalyzers.CodeFixes/Funcky.BuiltinAnalyzers.CodeFixes.csproj" />
<Project Path="Funcky.Analyzers/Funcky.BuiltinAnalyzers/Funcky.BuiltinAnalyzers.csproj" />
</Folder>
<Folder Name="/Build Config/">
<File Path="Analyzers.props" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="FrameworkFeatureConstants.props" />
<File Path="Funcky/CompatibilitySuppressions.xml" />
<File Path="global.json" />
<File Path="GlobalUsings.props" />
<File Path="GlobalUsings.Test.props" />
<File Path="NuGet.config" />
<File Path="PublicApiAnalyzers.targets" />
<File Path="typos.toml" />
</Folder>
<Folder Name="/Generators/">
<Project Path="Funcky.SourceGenerator.Test/Funcky.SourceGenerator.Test.csproj" />
<Project Path="Funcky.SourceGenerator/Funcky.SourceGenerator.csproj" />
</Folder>
<Folder Name="/Solution Items/">
<File Path=".editorconfig" />
<File Path=".gitignore" />
<File Path="changelog.md" />
<File Path="README.md" />
<File Path="SupportPolicy.md" />
</Folder>
<Project Path="Funcky.Async.Test/Funcky.Async.Test.csproj" />
<Project Path="Funcky.Async/Funcky.Async.csproj" />
<Project Path="Funcky.FsCheck/Funcky.FsCheck.fsproj" />
<Project Path="Funcky.Test.Internal/Funcky.Test.Internal.csproj" />
<Project Path="Funcky.Test/Funcky.Test.csproj" />
<Project Path="Funcky.TrimmingTest/Funcky.TrimmingTest.csproj" />
<Project Path="Funcky.Xunit.Test/Funcky.Xunit.Test.csproj" />
<Project Path="Funcky.Xunit.v3.Test/Funcky.Xunit.v3.Test.csproj" />
<Project Path="Funcky.Xunit.v3/Funcky.Xunit.v3.csproj" />
<Project Path="Funcky.Xunit/Funcky.Xunit.csproj" />
<Project Path="Funcky/Funcky.csproj" />
</Solution>
2 changes: 1 addition & 1 deletion Funcky/Funcky.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<FunckyNewestTargetFramework>net9.0</FunckyNewestTargetFramework>
<TargetFrameworks>$(FunckyNewestTargetFramework);net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netstandard2.0;netstandard2.1</TargetFrameworks>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.100",
"version": "9.0.200",
"rollForward": "feature"
}
}