Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fsharp_max_infix_operator_expression = 10


# Visual Studio Solution Files
[*.sln]
[*.{sln,slnx}]
indent_style = tab

# XML project files
Expand Down
139 changes: 0 additions & 139 deletions FSharp.Analyzers.SDK.sln

This file was deleted.

32 changes: 32 additions & 0 deletions FSharp.Analyzers.SDK.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/samples/">
<Project Path="samples/OptionAnalyzer.Test/OptionAnalyzer.Test.fsproj" />
<Project Path="samples/OptionAnalyzer/OptionAnalyzer.fsproj" />
</Folder>
<Folder Name="/Solution Items/">
<File Path=".gitignore" />
<File Path="CHANGELOG.md" />
<File Path="Directory.Build.props" />
<File Path="global.json" />
<File Path="nuget.config" />
<File Path="README.md" />
<File Path="resetTool.cmd" />
</Folder>
<Folder Name="/Solution Items/.github/">
<File Path=".github/dependabot.yml" />
</Folder>
<Folder Name="/Solution Items/.github/workflows/">
<File Path=".github/workflows/ci.yml" />
</Folder>
<Folder Name="/src/">
<Project Path="src/FSharp.Analyzers.Build/FSharp.Analyzers.Build.csproj" />
<Project Path="src/FSharp.Analyzers.Cli/FSharp.Analyzers.Cli.fsproj" />
<Project Path="src/FSharp.Analyzers.SDK.Testing/FSharp.Analyzers.SDK.Testing.fsproj" />
<Project Path="src/FSharp.Analyzers.SDK/FSharp.Analyzers.SDK.fsproj" />
</Folder>
</Solution>
8 changes: 6 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ pipeline "Build" {
"dotnet run --project src/FSharp.Analyzers.Cli/FSharp.Analyzers.Cli.fsproj -- --project ./samples/OptionAnalyzer/OptionAnalyzer.fsproj --analyzers-path ./artifacts/bin/OptionAnalyzer/release --verbosity d --binlog-path temp/binlogs"
}
stage "docs" {
run "dotnet fsdocs build --properties Configuration=Release --eval --clean --strict"
run
"dotnet fsdocs build --projects src/FSharp.Analyzers.SDK/FSharp.Analyzers.SDK.fsproj src/FSharp.Analyzers.SDK.Testing/FSharp.Analyzers.SDK.Testing.fsproj --properties Configuration=Release --eval --clean --strict"
}
runIfOnlySpecified false
}
Expand All @@ -45,7 +46,10 @@ pipeline "ReleaseBuild" {
pipeline "Docs" {
restoreStage
buildStage
stage "fsdocs" { run "dotnet fsdocs watch --properties Configuration=Release --eval" }
stage "fsdocs" {
run
"dotnet fsdocs watch --projects src/FSharp.Analyzers.SDK/FSharp.Analyzers.SDK.fsproj src/FSharp.Analyzers.SDK.Testing/FSharp.Analyzers.SDK.Testing.fsproj --properties Configuration=Release --eval"
}
runIfOnlySpecified true
}

Expand Down
Loading