Skip to content
Prev Previous commit
Next Next commit
Update Sentry.Native.targets
  • Loading branch information
jamescrosswell committed Jun 15, 2025
commit e221b7fb8df2b0415bad65ee8f9b17bd47195a5b
2 changes: 1 addition & 1 deletion src/Sentry/Platforms/Native/Sentry.Native.targets
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
built already on each native platform and fetched for the final .net build. -->
<Target Name="_BuildSentryNativeSDK"
BeforeTargets="DispatchToInnerBuilds;BeforeBuild"
Condition="('$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net9.0') and '$(CI)' != 'true'"
Condition="'$(IsNet8OrGreater)' == 'true' and '$(CI)' != 'true'"
Inputs="$(SentryNativeBuildInputs)"
Outputs="$(SentryNativeBuildOutputs)">
<!-- We want a "-Clean" because if the build script changes, previous cmake cache may contain invalid defines. -->
Expand Down
Loading