Skip to content

Commit

Permalink
Turn off assembly trimming (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
IncPlusPlus authored Oct 15, 2022
1 parent 301e268 commit ffab5f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"dotnet-versioninfo": {
"version": "1.0.2",
"version": "1.0.3",
"commands": [
"versioninfo"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: xt0rted/dotnet-tool-restore@v1

- name: Run dotnet format
run: dotnet format --check
run: dotnet format --verify-no-changes
# https://github.com/xt0rted/dotnet-format/issues/174
# - name: Run dotnet format
# uses: xt0rted/dotnet-format@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: xt0rted/dotnet-tool-restore@v1

- name: Run dotnet format
run: dotnet format --check
run: dotnet format --verify-no-changes
# https://github.com/xt0rted/dotnet-format/issues/174
# - name: Run dotnet format
# uses: xt0rted/dotnet-format@v1
Expand Down
3 changes: 2 additions & 1 deletion Windows/Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
<UseWindowsForms>true</UseWindowsForms>
<RootNamespace>titanfall2_rp.Windows</RootNamespace>
<AssemblyName>titanfall2-rp</AssemblyName>
<PublishTrimmed>true</PublishTrimmed>
<!-- https://github.com/IncPlusPlus/titanfall2-rp/issues/218 -->
<PublishTrimmed>false</PublishTrimmed>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<!--https://docs.microsoft.com/en-us/dotnet/core/whats-new/dotnet-core-3-0#single-file-executables-->
<PublishSingleFile>true</PublishSingleFile>
Expand Down

0 comments on commit ffab5f2

Please sign in to comment.