Skip to content

Commit 4dd5c7a

Browse files
committed
Fix a few more formatting problems
1 parent cc9b8d5 commit 4dd5c7a

File tree

8 files changed

+31
-31
lines changed

8 files changed

+31
-31
lines changed

.editorconfig

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ root = true
22

33
[*]
44
charset = utf-8
5-
indent_style = tab
6-
indent_size = 4
75
end_of_line = lf
8-
insert_final_newline = false
96
trim_trailing_whitespace = true
7+
insert_final_newline = true
108

119
[*.cs]
10+
indent_style = tab
11+
indent_size = 4
1212
dotnet_separate_import_directive_groups = true
1313
dotnet_sort_system_directives_first = true
1414
csharp_new_line_before_open_brace = none
@@ -26,4 +26,4 @@ dotnet_style_qualification_for_event = false:suggestion
2626
dotnet_style_qualification_for_field = false:suggestion
2727
dotnet_style_qualification_for_method = false:suggestion
2828
dotnet_style_qualification_for_property = false:suggestion
29-
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
29+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
Build:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-latest
1111

1212
strategy:
1313
fail-fast: false
@@ -17,12 +17,12 @@ jobs:
1717
steps:
1818
- name: Checkout Repository
1919
uses: actions/checkout@main
20-
20+
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@main
2323
with:
2424
dotnet-version: 5.0.x
25-
25+
2626
- name: Build
2727
working-directory: UnityAssetReplacer/
2828
run: dotnet build -c Release -r ${{matrix.platform}}

.github/workflows/linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
Lint:
1010
runs-on: ubuntu-latest
11-
11+
1212
steps:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v2

.github/workflows/prerelease.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
main
77

88
jobs:
9-
Build:
9+
Build:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
@@ -17,40 +17,40 @@ jobs:
1717
steps:
1818
- name: Checkout Repository
1919
uses: actions/checkout@main
20-
20+
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@main
2323
with:
2424
dotnet-version: 5.0.x
25-
25+
2626
- name: Build
2727
run: dotnet publish -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=None -c Release -r ${{matrix.platform}}
28-
28+
2929
- name: Copy LICENSE
3030
run: cp LICENSE UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/LICENSE
31-
31+
3232
- name: Copy README.md
3333
run: cp README.md UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/README.md
34-
34+
3535
- name: Compress
3636
working-directory: UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/
3737
run: zip -9 UnityAssetReplacer-${{matrix.platform}}-prerelease.zip *
38-
38+
3939
- name: Upload Package
4040
uses: actions/upload-artifact@main
4141
with:
4242
name: UnityAssetReplacer-${{matrix.platform}}-prerelease.zip
4343
path: UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/UnityAssetReplacer-${{matrix.platform}}-prerelease.zip
4444
if-no-files-found: error
45-
45+
4646
Upload:
4747
needs: Build
4848
runs-on: ubuntu-latest
49-
49+
5050
steps:
5151
- name: Download Packages
5252
uses: actions/download-artifact@main
53-
53+
5454
- name: Upload Pre-release
5555
uses: marvinpinto/action-automatic-releases@latest
5656
with:

.github/workflows/release.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- v*
77

88
jobs:
9-
Build:
9+
Build:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
@@ -17,40 +17,40 @@ jobs:
1717
steps:
1818
- name: Checkout Repository
1919
uses: actions/checkout@main
20-
20+
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@main
2323
with:
2424
dotnet-version: 5.0.x
25-
25+
2626
- name: Build
2727
run: dotnet publish -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:DebugType=None -c Release -r ${{matrix.platform}}
28-
28+
2929
- name: Copy LICENSE
3030
run: cp LICENSE UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/LICENSE
31-
31+
3232
- name: Copy README.md
3333
run: cp README.md UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/README.md
34-
34+
3535
- name: Compress
3636
working-directory: UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/
3737
run: zip -9 UnityAssetReplacer-${{matrix.platform}}.zip *
38-
38+
3939
- name: Upload Package
4040
uses: actions/upload-artifact@main
4141
with:
4242
name: UnityAssetReplacer-${{matrix.platform}}.zip
4343
path: UnityAssetReplacer/bin/Release/net5.0/${{matrix.platform}}/publish/UnityAssetReplacer-${{matrix.platform}}.zip
4444
if-no-files-found: error
45-
45+
4646
Upload:
4747
needs: Build
4848
runs-on: ubuntu-latest
49-
49+
5050
steps:
5151
- name: Download Packages
5252
uses: actions/download-artifact@main
53-
53+
5454
- name: Upload Release
5555
uses: marvinpinto/action-automatic-releases@latest
5656
with:

UnityAssetReplacer/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ private static void Help() {
7676
Console.Error.WriteLine("Try `" + AppDomain.CurrentDomain.FriendlyName + " --help' for more information.");
7777
}
7878
}
79-
}
79+
}

UnityAssetReplacer/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
// [assembly: AssemblyVersion("1.0.*")]
3939
[assembly: AssemblyVersion("2.1.2.0")]
4040
[assembly: AssemblyFileVersion("2.1.2.0")]
41-
[assembly: NeutralResourcesLanguage("en-US")]
41+
[assembly: NeutralResourcesLanguage("en-US")]

UnityAssetReplacer/UnityAssetReplacer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,4 @@ public void DumpAssets(string dumpPath) {
138138
}
139139
}
140140
}
141-
}
141+
}

0 commit comments

Comments
 (0)