File tree Expand file tree Collapse file tree 6 files changed +43
-3
lines changed Expand file tree Collapse file tree 6 files changed +43
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "version" : 1 ,
3+ "isRoot" : true ,
4+ "tools" : {
5+ "csharpier" : {
6+ "version" : " 1.1.1" ,
7+ "commands" : [
8+ " csharpier"
9+ ],
10+ "rollForward" : false
11+ }
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ cake.config
Original file line number Diff line number Diff line change 1+ name : Formatting check
2+
3+ on :
4+ workflow_dispatch :
5+ pull_request :
6+
7+ jobs :
8+ formatting-check :
9+ runs-on : ubuntu-latest
10+ permissions :
11+ pull-requests : write
12+ steps :
13+ - name : CSharpier Linter
14+
Original file line number Diff line number Diff line change @@ -402,4 +402,6 @@ FodyWeavers.xsd
402402
403403# JetBrains Rider
404404.idea /
405- * .sln.iml
405+ * .sln.iml
406+
407+ test-results /
Original file line number Diff line number Diff line change 1+ dotnet tool restore
2+ dotnet csharpier format .
3+
14dotnet run -- project build/ Build.csproj -- $args
2- exit $LASTEXITCODE ;
5+ exit $LASTEXITCODE ;
Original file line number Diff line number Diff line change 1- dotnet run --project ./build/Build.csproj -- " $@ "
1+ #! /bin/sh
2+
3+ set -e
4+
5+ dotnet tool restore
6+ dotnet csharpier format .
7+
8+ dotnet run --project ./build/Build.csproj -- " $@ "
You can’t perform that action at this time.
0 commit comments