🔧 Updates overflow checking behavior for performance

Changes the default setting for CheckForOverflowUnderflow to false
to improve performance during math operations.
This commit is contained in:
2026-04-16 14:55:14 +03:00
parent c5a4ba6103
commit 4913ab7ecf
+3 -2
View File
@@ -49,8 +49,9 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<!-- Defaults to checked context for math operations, throws OverflowException when needed --> <!-- Defaults to unchecked context for math operations for performance -->
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> <!-- set to true to throws OverflowException when needed -->
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Label="OpenApi Source Generated Interceptors"> <PropertyGroup Label="OpenApi Source Generated Interceptors">