Skip to content

Commit

Permalink
Remove platform condition in DefineConstants field
Browse files Browse the repository at this point in the history
Temporary fix for Rider's broken project mapping
  • Loading branch information
bagusnl committed Oct 26, 2024
1 parent 1d6748f commit 433b5bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CollapseLauncher/CollapseLauncher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@
- USENEWZIPDECOMPRESS : Use sharpcompress for decompressing .zip game package files
- USEVELOPACK : Use Velopack as the update manager
-->
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<!-- !! IMPORTANT !!-->
<!-- DO NOT FORGET TO UPDATE THE DEFINECONSTANTS IN THE PUBLISH PROFILE(S) AS WELL -->
<DefineConstants>DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;DUMPGIJSON;SIMULATEGIHDR;GSPBYPASSGAMERUNNING;MHYPLUGINSUPPORT</DefineConstants>
<TrimMode>full</TrimMode>
<PublishAot>true</PublishAot>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<!-- !! IMPORTANT !!-->
<!-- DO NOT FORGET TO UPDATE THE DEFINECONSTANTS IN THE PUBLISH PROFILE(S) AS WELL -->
<DefineConstants>DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;PREVIEW;MHYPLUGINSUPPORT</DefineConstants>
<Optimize>True</Optimize>
<GitSkipCache>true</GitSkipCache>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Publish|x64'">
<PropertyGroup Condition="'$(Configuration)'=='Publish'">
<!-- !! IMPORTANT !!-->
<!-- DO NOT FORGET TO UPDATE THE DEFINECONSTANTS IN THE PUBLISH PROFILE(S) AS WELL -->
<DefineConstants>DISABLE_XAML_GENERATED_MAIN;USEVELOPACK;USENEWZIPDECOMPRESS;ENABLEHTTPREPAIR;DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION;MHYPLUGINSUPPORT</DefineConstants>
Expand Down
2 changes: 1 addition & 1 deletion Hi3Helper.TaskScheduler/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@
"contentHash": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ=="
}
},
".NETFramework,Version=v4.6.2/win-x86": {
".NETFramework,Version=v4.6.2/win-x64": {
"System.Net.Http": {
"type": "Direct",
"requested": "[4.3.4, )",
Expand Down

0 comments on commit 433b5bf

Please sign in to comment.