Skip to content

Commit b98e1ea

Browse files
committed
Command-line wrapper: Small misc improvements
1 parent 2841902 commit b98e1ea

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cpp2IL.Core/Utils/MiscUtils.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ bool F2(T t)
305305
"UnityCrashHandler64.exe",
306306
"install.exe",
307307
"launch.exe",
308-
"MelonLoader.Installer.exe"
308+
"MelonLoader.Installer.exe",
309+
"crashpad_handler.exe"
309310
};
310311

311312
public static string AnalyzeStackTracePointers(ulong[] pointers)

Cpp2IL/Cpp2IL.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<LangVersion>10</LangVersion>
1010
<Nullable>enable</Nullable>
1111
<OutputType>Exe</OutputType>
12-
<PublishSingleFile Condition="'$(TargetFramework)'!='net472'">true</PublishSingleFile>
12+
<PublishSingleFile Condition="'$(TargetFramework)'!='net472' and '$(GITHUB_ACTIONS)' == 'true'">true</PublishSingleFile>
1313
<PublishTrimmed>true</PublishTrimmed>
1414
<TargetFrameworks>net6.0;net472</TargetFrameworks>
1515
<TrimMode>copyused</TrimMode>
@@ -33,4 +33,4 @@
3333
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
3434
<Reference Include="System.IO.Compression" />
3535
</ItemGroup>
36-
</Project>
36+
</Project>

0 commit comments

Comments
 (0)