Skip to content

Commit 668cdaf

Browse files
style: format
* crlf -> lf
1 parent 1cc2684 commit 668cdaf

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.editorconfig

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ dotnet_code_quality_unused_parameters = all:suggestion
7878
dotnet_remove_unnecessary_suppression_exclusions = none
7979

8080
#### C# Coding Conventions ####
81-
[*.cs]
8281

8382
# var preferences
8483
csharp_style_var_elsewhere = false:silent
@@ -376,8 +375,4 @@ dotnet_naming_style.camelcase.capitalization = camel_case
376375
dotnet_naming_style.s_camelcase.required_prefix = s_
377376
dotnet_naming_style.s_camelcase.required_suffix =
378377
dotnet_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

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)