Skip to content

Commit c8f9262

Browse files
committed
leave roslynator.sln
1 parent 88581a4 commit c8f9262

13 files changed

+320
-87
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@ jobs:
5757
if [ "${{ github.event_name }}" = "pull_request" ]; then version=$pr_version; fi
5858
echo "Resolved CLI version: $version"
5959
echo "version=${version}" >> $GITHUB_OUTPUT
60-
- run: dotnet restore Roslynator.slnx
61-
- run: dotnet build Roslynator.slnx --no-restore
60+
- run: dotnet restore Roslynator.sln
61+
- run: dotnet build Roslynator.sln --no-restore
6262
- run: |
63-
dotnet format Roslynator.slnx --no-restore --verify-no-changes --severity info
64-
- run: dotnet test Roslynator.slnx --no-build
63+
dotnet format Roslynator.sln --no-restore --verify-no-changes --severity info
64+
- run: dotnet test Roslynator.sln --no-build
6565
- uses: actions/checkout@v4
6666
with:
6767
repository: josefpihrt/wordb
6868
path: wordb
6969
- run: dotnet tool install -g Roslynator.DotNet.Cli --version 0.8.3
7070
- run: |
71-
roslynator spellcheck Roslynator.slnx --dry-run --scope all --words \
71+
roslynator spellcheck Roslynator.sln --dry-run --scope all --words \
7272
spellcheck \
7373
../wordb/data/en \
7474
../wordb/data/en-us \

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"dotnet.defaultSolution": "src/Roslynator.slnx"
2+
"dotnet.defaultSolution": "src/Roslynator.sln"
33
}

src/Roslynator.CoreAndTesting.slnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"solution": {
3-
"path": "Roslynator.slnx",
3+
"path": "Roslynator.sln",
44
"projects": [
55
"CSharp.Workspaces\\CSharp.Workspaces.csproj",
66
"CSharp\\CSharp.csproj",

src/Roslynator.sln

Lines changed: 305 additions & 0 deletions
Large diffs are not rendered by default.

src/Roslynator.slnx

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

tools/cli_add_file_banner.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dotnet build "$PSScriptRoot/../src/CommandLine.slnx" /p:Configuration=Debug /v:m /m
44

5-
roslynator fix "$PSScriptRoot/../src/Roslynator.slnx" `
5+
roslynator fix "$PSScriptRoot/../src/Roslynator.sln" `
66
--verbosity d `
77
--file-log "roslynator.log" `
88
--file-log-verbosity diag `

tools/cli_analyze.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dotnet build "$PSScriptRoot/../src/CommandLine.slnx" /p:Configuration=Debug /v:m /m
44

5-
roslynator analyze "$PSScriptRoot/../src/Roslynator.slnx" `
5+
roslynator analyze "$PSScriptRoot/../src/Roslynator.sln" `
66
--analyzer-assemblies `
77
"$PSScriptRoot/../src/Analyzers.CodeFixes/bin/Debug/netstandard2.0/Roslynator.CSharp.Analyzers.dll" `
88
"$PSScriptRoot/../src/CodeAnalysis.Analyzers.CodeFixes/bin/Debug/netstandard2.0/Roslynator.CodeAnalysis.Analyzers.dll" `

tools/cli_fix.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $visualStudioPath = Get-VSSetupInstance -All | Select-VSSetupInstance -Require '
55

66
dotnet build "$PSScriptRoot/../src/CommandLine.slnx" /p:Configuration=Debug /v:m /m
77

8-
roslynator fix "$PSScriptRoot/../src/Roslynator.slnx" `
8+
roslynator fix "$PSScriptRoot/../src/Roslynator.sln" `
99
--analyzer-assemblies `
1010
"$PSScriptRoot/../src/Analyzers.CodeFixes/bin/Debug/netstandard2.0/Roslynator.CSharp.Analyzers.dll" `
1111
"$PSScriptRoot/../src/Analyzers.CodeFixes/bin/Debug/netstandard2.0/Roslynator.CSharp.Analyzers.CodeFixes.dll" `

tools/cli_format.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dotnet build "$PSScriptRoot/../src/CommandLine.slnx" /p:Configuration=Debug /v:m /m
44

5-
roslynator format "$PSScriptRoot/../src/Roslynator.slnx" `
5+
roslynator format "$PSScriptRoot/../src/Roslynator.sln" `
66
--verbosity d `
77
--file-log "roslynator.log" `
88
--file-log-verbosity diag `

tools/cli_lloc.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dotnet build "$PSScriptRoot/../src/CommandLine.slnx" /p:Configuration=Debug /v:m /m
44

5-
roslynator lloc "$PSScriptRoot/../src/Roslynator.slnx" `
5+
roslynator lloc "$PSScriptRoot/../src/Roslynator.sln" `
66
--verbosity d `
77
--file-log "roslynator.log" `
88
--file-log-verbosity diag

0 commit comments

Comments
 (0)