Enable EXCEPTION_TOLERANCE on Tools.

This wasn't the case yet??? Whoops.
This commit is contained in:
Pieter-Jan Briers
2023-07-24 20:52:39 +02:00
parent 8375a4038b
commit e1597da4c7
2 changed files with 2 additions and 1 deletions

View File

@@ -23,7 +23,7 @@
<PropertyGroup Condition="'$(FullRelease)' != 'True'">
<DefineConstants>$(DefineConstants);DEVELOPMENT</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PropertyGroup Condition="'$(Configuration)' == 'Release' Or '$(Configuration)' == 'Tools'">
<DefineConstants>$(DefineConstants);EXCEPTION_TOLERANCE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(EnableClientScripting)' == 'True'">

View File

@@ -48,6 +48,7 @@ END TEMPLATE-->
### Other
* Pressing `^C` twice on the server will now cause it to hard-exit immediately.
* `Tools` now has `EXCEPTION_TOLERANCE` enabled.
### Internal