File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed
Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ dotnet_code_quality_unused_parameters = all:suggestion
7878dotnet_remove_unnecessary_suppression_exclusions = none
7979
8080# ### C# Coding Conventions ####
81- [* .cs ]
8281
8382# var preferences
8483csharp_style_var_elsewhere = false :silent
@@ -376,8 +375,4 @@ dotnet_naming_style.camelcase.capitalization = camel_case
376375dotnet_naming_style.s_camelcase.required_prefix = s_
377376dotnet_naming_style.s_camelcase.required_suffix =
378377dotnet_naming_style.s_camelcase.word_separator =
379- dotnet_naming_style.s_camelcase.capitalization = camel_case
380- tab_width = 4
381- indent_size = 4
382- end_of_line = crlf
383-
378+ dotnet_naming_style.s_camelcase.capitalization = camel_case
Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ jobs:
3535 with :
3636 dotnet-version : 10.0.x
3737 - name : Restore
38- run : dotnet restore --verbosity normal
38+ run : dotnet restore
3939 - name : Build
40- run : dotnet build --configuration Release --no-restore --verbosity normal
40+ run : dotnet build -c Release --no-restore
4141 - name : Test
42- run : dotnet test --configuration Release --no-restore --no-build --verbosity normal
42+ run : dotnet test -c Release --no-restore --no-build
4343 - name : Pack
4444 if : startsWith(github.ref, 'refs/tags/')
45- run : dotnet pack -c Release --no-restore --no-build -v normal - p:Version='${{ steps.gitversion.outputs.SemVer }}'
45+ run : dotnet pack -c Release --no-restore --no-build -p:Version='${{ steps.gitversion.outputs.SemVer }}'
4646 - name : NuGet push
4747 if : startsWith(github.ref, 'refs/tags/')
4848 run : dotnet nuget push ./artifacts/package/release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s ${{ env.NUGET_FEED }}
You can’t perform that action at this time.
0 commit comments