sentry-dotnet
sentry-dotnet copied to clipboard
Replace SdkVersion from reflection to source generator
While adding #2709 I noticed we're causing blocking on the first access to the SDK version.
This could be replaced by something source generated so the value is available in some const
Edit:
It actually looks like thsi block is done by synchronization done by Lazy<T>
:
But still having this written with source generator would resolve this